Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[fs/lustre-release.git] / lustre / tests / socketserver
index e2fd66a..25bbb6e 100755 (executable)
@@ -15,14 +15,6 @@ listen(Server,SOMAXCONN)                     || die "listen: $!";
 
 logmsg "server started on $NAME";
 
-my $rc = fork();
-if ($rc > 0) { #parent
-    exit();
-} elsif ($rc < 0) { # error
-    logmsg "fork failed: $rc";
-    exit();
-}
-
 accept(Client,Server);
 logmsg "connection on $NAME";
 print Client "from server\n";