2020301918-os/user/testpid.c
2022-10-29 19:48:58 +08:00

13 lines
193 B
C

#include <user/stdio.h>
#include <user/syscall.h>
int main()
{
while (1) {
printf("pid: %d!", get_pid());
fflush();
for (int i = 0 ; i < (int)1e8 ; i++)
;//do nothing
}
return 0;
}