blob: 2f313838b6d1552645c16a0ec7894d772b48fd2a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | /*
 * Test for pthread_exit().
 *
 * Depends on API functions: None.
 */
#include <pthread.h>
int
main(int argc, char * argv[])
{
	/* A simple test firstly. */
	pthread_exit((void *) 2);
}
 |