/* multithread example uses C-lib _beginthread() */ #include #include #include #include #ifndef __MT__ #error You forgot to define -Zmt #endif #ifdef USE_PUTCHAR #define OUT(c) {putchar(c); fflush(stdout);} #else #define OUT(c) {int tmp = c;write (1, &tmp, 1);} #endif void mythread (void *param) { int i; char c = (char) (int) param; for (i = 0; i < 1024; ++i) OUT(c); } int main() { if (_beginthread(mythread, NULL, 8192, (void *) '+') == -1) { puts("error: cannot create thread"); return(1); } if (_beginthread(mythread, NULL, 8192, (void *) '-') == -1) { puts("error: cannot create thread"); return(1); } getchar (); return 0; }