ofdbus/dbus/tsrc/testapps/dbus_test_cases/test-sleep-forever.c
changeset 0 e4d67989cc36
child 18 47c74d1534e1
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
       
     2 /* This is a process that just sleeps infinitely. */
       
     3 
       
     4 #include <unistd.h>
       
     5 
       
     6 int
       
     7 main ()
       
     8 {
       
     9   while (1)
       
    10     sleep (10000000);
       
    11   
       
    12   return 1;
       
    13 }