summaryrefslogtreecommitdiff
path: root/mit-pthreads/tests/test_create.c
blob: 2d82db07c5f2de3c22fced580f0b6c99f9258da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ==== test_create.c ============================================================
 * Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
 *
 * Description : Test pthread_create() and pthread_exit() calls.
 *
 *  1.00 93/08/03 proven
 *      -Started coding this file.
 */

#define PTHREAD_KERNEL
#include <pthread.h>
#include <stdio.h>

void* new_thread(void* arg)
{
	int i;

	printf("New thread was passed arg address %x\n", arg);
	printf("New thread stack at %x\n", &i);
	return(NULL);
	PANIC();
}

main()
{
	pthread_t thread;
	int i;

	printf("Original thread stack at %x\n", &i);
	if (pthread_create(&thread, NULL, new_thread, (void *)0xdeadbeef)) {
		printf("Error: creating new thread\n");
	}
	pthread_exit(NULL);
	PANIC();
}