2003-01-14 21:15:58 +01:00
|
|
|
/*
|
|
|
|
* File: cancel9.c
|
|
|
|
*
|
|
|
|
* Test Synopsis: Test if waitpid is a cancellation point.
|
|
|
|
*
|
|
|
|
* Test Method (Validation or Falsification):
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Requirements Tested:
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Features Tested:
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Cases Tested:
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Environment:
|
|
|
|
* -
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* - None.
|
|
|
|
*
|
|
|
|
* Output:
|
|
|
|
* - File name, Line number, and failed expression on failure.
|
|
|
|
* - No output on success.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* - have working pthread_create, pthread_cancel, pthread_setcancelstate
|
|
|
|
* pthread_join
|
|
|
|
*
|
|
|
|
* Pass Criteria:
|
|
|
|
* - Process returns zero exit status.
|
|
|
|
*
|
|
|
|
* Fail Criteria:
|
|
|
|
* - Process returns non-zero exit status.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "test.h"
|
2003-01-24 02:09:40 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/wait.h>
|
2003-01-14 21:15:58 +01:00
|
|
|
|
2003-01-21 21:51:14 +01:00
|
|
|
static pid_t pid;
|
|
|
|
|
2003-01-14 21:15:58 +01:00
|
|
|
static void *Thread(void *punused)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
2003-01-21 21:51:14 +01:00
|
|
|
pid = fork ();
|
2003-01-14 21:15:58 +01:00
|
|
|
assert (pid != -1);
|
|
|
|
switch (pid)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
sleep (10);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert (waitpid (pid, &res, 0) != -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
2003-01-21 21:51:14 +01:00
|
|
|
int res;
|
|
|
|
|
2003-01-14 21:15:58 +01:00
|
|
|
void * result;
|
|
|
|
pthread_t t;
|
|
|
|
|
|
|
|
assert (pthread_create (&t, NULL, Thread, NULL) == 0);
|
|
|
|
sleep (5);
|
|
|
|
assert (pthread_cancel (t) == 0);
|
|
|
|
assert (pthread_join (t, &result) == 0);
|
|
|
|
assert (result == PTHREAD_CANCELED);
|
2003-01-21 21:51:14 +01:00
|
|
|
assert (waitpid (pid, &res, 0) != -1);
|
2003-01-14 21:15:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|