|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 198 (0xc6) Types: TextFile Names: »syscall.c«
└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/bsd/syscall.c« └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21F/bsd/syscall.c«
main(argc,argv) char *argv[]; { register int ncalls; if(argc < 2){ printf("usage: %s #syscalls\n",argv[0]); exit(1); } ncalls = atoi(argv[1]); while(ncalls-- > 0) (void) getpid(); }