Browse Source

Don't fflush when printf is commented out. Also update comment.

master
Gavan Fantom 17 years ago
parent
commit
0762f1a067
  1. 6
      src/lsi/cmdsocket.c

6
src/lsi/cmdsocket.c

@ -131,7 +131,7 @@ void cmd_parse(char *cmd) {
*strchr(cmd, '\n') = '\0';
// printf("DEBUG: Received command: %s\n", cmd);
fflush(stdout);
// fflush(stdout);
sp = strtok(cmd, " \t\r");
sp = strtok(NULL, " \t\r");
@ -144,9 +144,9 @@ void cmd_parse(char *cmd) {
strncat(function, cmd, CMD_MAXSIZE);
// printf("DEBUG: function: %s, arg %d\n", function, arg);
fflush(stdout);
// fflush(stdout);
if (vm_spawn_args(function, 1, arg)) {
/* Write an ack here, once a proper function exists */
/* The ack gets sent by the script */
} else {
/* Write an error, if it's possible. Don't worry about
missing characters and buffering for now, but we

Loading…
Cancel
Save