equal
deleted
inserted
replaced
1 /** |
1 /** |
2 * $Id: threads.c,v 1.1.1.1 2008-04-28 17:32:53 mbroeker Exp $ |
2 * test/demos/threads.c |
3 * $Source: /development/c/demos/threads.c,v $ |
3 * Copyright (C) 2008 Markus Broeker |
4 */ |
4 */ |
5 |
5 |
6 #include <stdio.h> |
6 #include <stdio.h> |
7 #include <stdlib.h> |
7 #include <stdlib.h> |
8 #include <pthread.h> |
8 #include <pthread.h> |
42 |
42 |
43 pthread_join (thread, NULL); |
43 pthread_join (thread, NULL); |
44 |
44 |
45 return EXIT_SUCCESS; |
45 return EXIT_SUCCESS; |
46 } |
46 } |
47 |
|