2003-08-01 16:48:41 -04:00
|
|
|
#include <pthread.h>
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <stdio.h>
|
2003-08-01 16:48:41 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
void* runner(void*);
|
|
|
|
|
|
|
|
int res = 0;
|
2004-04-15 08:22:19 -04:00
|
|
|
#ifdef __CLASSIC_C__
|
2016-05-16 10:34:04 -04:00
|
|
|
int main()
|
|
|
|
{
|
2004-04-15 08:22:19 -04:00
|
|
|
int ac;
|
2016-05-16 10:34:04 -04:00
|
|
|
char* av[];
|
2004-04-15 08:22:19 -04:00
|
|
|
#else
|
2016-05-16 10:34:04 -04:00
|
|
|
int main(int ac, char* av[])
|
|
|
|
{
|
2004-04-15 08:22:19 -04:00
|
|
|
#endif
|
2003-08-01 16:48:41 -04:00
|
|
|
pthread_t tid[2];
|
|
|
|
pthread_create(&tid[0], 0, runner, (void*)1);
|
|
|
|
pthread_create(&tid[1], 0, runner, (void*)2);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2015-10-26 14:17:44 +01:00
|
|
|
#if defined(__BEOS__) && !defined(__ZETA__) /* (no usleep on BeOS 5.) */
|
|
|
|
usleep(1); /* for strange behavior on single-processor sun */
|
2006-12-04 17:26:41 -05:00
|
|
|
#endif
|
|
|
|
|
2003-08-01 16:48:41 -04:00
|
|
|
pthread_join(tid[0], 0);
|
|
|
|
pthread_join(tid[1], 0);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (ac > 1000) {
|
|
|
|
return *av[0];
|
|
|
|
}
|
2003-08-01 16:48:41 -04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* runner(void* args)
|
|
|
|
{
|
|
|
|
int cc;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (cc = 0; cc < 10; cc++) {
|
2015-09-22 06:46:28 +02:00
|
|
|
printf("%p CC: %d\n", args, cc);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
res++;
|
2003-08-01 16:48:41 -04:00
|
|
|
return 0;
|
|
|
|
}
|