Sign in
nest-open-source
/
nest-cam
/
4320010
/
strace
/
refs/heads/master
/
.
/
strace
/
tests
/
getsid.c
blob: b563de9d003a1252ccc7a0d4cd9e0ed90c5ca63e [
file
] [
log
] [
blame
] [
edit
]
#include
"tests.h"
#include
<stdio.h>
#include
<unistd.h>
int
main
(
void
)
{
pid_t
pid
=
getpid
();
printf
(
"getsid(%d) = %d\n"
,
pid
,
getsid
(
pid
));
puts
(
"+++ exited with 0 +++"
);
return
0
;
}