projects
/
platform
/
upstream
/
dbus.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2003-04-04 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git]
/
test
/
test-sleep-forever.c
1
/* This is a process that just sleeps infinitely. */
2
3
#include <unistd.h>
4
5
int
6
main (int argc, char **argv)
7
{
8
while (1)
9
sleep (10000000);
10
11
return 1;
12
}