mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-26 11:57:52 +00:00
17 lines
192 B
C
17 lines
192 B
C
|
#include <unistd.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
while (1) {
|
||
|
if (read(0, &i, sizeof(i)) != sizeof(i))
|
||
|
break;
|
||
|
|
||
|
i = getsid(0);
|
||
|
write(1, &i, sizeof(i));
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|