Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. pid_t StartMemcache( void )
  2. {
  3. if( pid_t Child = fork() )
  4. { return Child; }
  5. else
  6. { INSIST( execlp( "StartMemcacheD", "-p", "11211", NULL ) == 0 ); }
  7.  
  8. return 0;
  9. }
Add Comment
Please, Sign In to add comment