Example #1
0
//	////////////////////////////////////////////////////////////////////////////
int LSF_stoprex()
{
	int result;

	if ((result = ls_stoprex()) != 0) {
		std::ostringstream error_text;
		error_text << "Invocation of 'ls_stoprex()' returned " << result << ".";
		throw MLB::LSFWrapper::LSFExceptionStatus(lserrno,	error_text);
	}

	return(result);
}
Example #2
0
static void
default_tstp_(int signo)
{
    (void) ls_stoprex();
    kill(getpid(), SIGSTOP);
}