print start messages

svn path=/trunk/boinc/; revision=1588
This commit is contained in:
Karl Chen 2003-06-24 22:50:32 +00:00
parent c559aa4d86
commit f270856303
1 changed files with 10 additions and 9 deletions

View File

@ -11,7 +11,7 @@
// The Original Code is the Berkeley Open Infrastructure for Network Computing. // The Original Code is the Berkeley Open Infrastructure for Network Computing.
// //
// The Initial Developer of the Original Code is the SETI@home project. // The Initial Developer of the Original Code is the SETI@home project.
// Portions created by the SETI@home project are Copyright (C) 2002 // Portions created by the SETI@home project are Copyright (C) 2002, 2003
// University of California at Berkeley. All Rights Reserved. // University of California at Berkeley. All Rights Reserved.
// //
// Contributor(s): // Contributor(s):
@ -36,6 +36,7 @@ int main() {
for (i=0; i<20; i++) { for (i=0; i<20; i++) {
p = config.start_commands[i]; p = config.start_commands[i];
if (!p) break; if (!p) break;
fprintf(stderr, "Executing: %s\n", p);
system(p); system(p);
} }
} }