mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
933411ba99
- Fix bugs in kDos2Errno definition - malloc() should now be thread safe - Fix bug in rollup.com header generator - Fix open(O_APPEND) on the New Technology - Fix select() on the New Technology and test it - Work towards refactoring i/o for thread safety - Socket reads and writes on NT now poll for signals - Work towards i/o completion ports on the New Technology - Make read() and write() intermittently check for signals - Blinkenlights keyboard i/o so much better on NT w/ poll() - You can now poll() files and sockets at the same time on NT - Fix bug in appendr() that manifests with dlmalloc footers off
49 lines
1.8 KiB
C
49 lines
1.8 KiB
C
#if 0
|
|
/*─────────────────────────────────────────────────────────────────╗
|
|
│ To the extent possible under law, Justine Tunney has waived │
|
|
│ all copyright and related or neighboring rights to this file, │
|
|
│ as it is written in the following disclaimers: │
|
|
│ • http://unlicense.org/ │
|
|
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
|
╚─────────────────────────────────────────────────────────────────*/
|
|
#endif
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/intrin/kprintf.h"
|
|
#include "libc/log/check.h"
|
|
#include "libc/log/log.h"
|
|
#include "libc/nt/nt/process.h"
|
|
#include "libc/rand/rand.h"
|
|
#include "libc/runtime/gc.h"
|
|
#include "libc/runtime/memtrack.internal.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/time/time.h"
|
|
#include "libc/x/x.h"
|
|
|
|
dontinline void dostuff(const char *s) {
|
|
int i, us;
|
|
srand(rand64()); /* seeds rand() w/ intel rdrnd, auxv, etc. */
|
|
for (i = 0; i < 5; ++i) {
|
|
us = rand() % 500000;
|
|
usleep(us);
|
|
printf("hello no. %u from %s %u [us=%d]\n", i, s, getpid(), us);
|
|
fflush(stdout);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int rc, child, wstatus;
|
|
CHECK_NE(-1, (child = fork()));
|
|
if (!child) {
|
|
/* child process */
|
|
dostuff("child");
|
|
return 0;
|
|
} else {
|
|
/* parent process */
|
|
dostuff("parent");
|
|
/* note: abandoned children become zombies */
|
|
CHECK_NE(-1, (rc = wait(&wstatus)));
|
|
CHECK_EQ(0, WEXITSTATUS(wstatus));
|
|
return 0;
|
|
}
|
|
}
|