2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2012-03-24 14:06:46 -04:00
|
|
|
* Copyright 2001, 2011 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "io.h"
|
|
|
|
#include "gtmsecshr.h"
|
2012-03-24 14:06:46 -04:00
|
|
|
#include "secshr_client.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
#include "send_msg.h"
|
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
error_def(ERR_NOSUCHPROC);
|
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
int continue_proc(pid_t pid)
|
|
|
|
{
|
|
|
|
if (0 == kill(pid, SIGCONT))
|
|
|
|
return(0);
|
|
|
|
else if (ESRCH == errno)
|
|
|
|
{
|
|
|
|
send_msg(VARLSTCNT(5) ERR_NOSUCHPROC, 3, pid, RTS_ERROR_LITERAL("continue"));
|
|
|
|
return(ESRCH);
|
|
|
|
} else
|
|
|
|
assert(EINVAL != errno);
|
|
|
|
return(send_mesg2gtmsecshr(CONTINUE_PROCESS, pid, (char *)NULL, 0));
|
|
|
|
}
|