fis-gtm/sr_unix/continue_proc.c

36 lines
936 B
C

/****************************************************************
* *
* Copyright 2001, 2011 Fidelity Information Services, Inc *
* *
* 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"
#include "secshr_client.h"
#include "send_msg.h"
error_def(ERR_NOSUCHPROC);
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));
}