Changeset 153 for branches/GNU/src/gmake/remote-stub.c
- Timestamp:
- Sep 8, 2004, 4:43:30 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/remote-stub.c
r54 r153 44 44 45 45 int 46 start_remote_job_p (int first_p )46 start_remote_job_p (int first_p UNUSED) 47 47 { 48 48 return 0; … … 58 58 59 59 int 60 start_remote_job (char **argv, char **envp, int stdin_fd, 61 int *is_remote, int *id_ptr, int *used_stdin) 60 start_remote_job (char **argv UNUSED, char **envp UNUSED, int stdin_fd UNUSED, 61 int *is_remote UNUSED, int *id_ptr UNUSED, 62 int *used_stdin UNUSED) 62 63 { 63 64 return -1; … … 72 73 73 74 int 74 remote_status (int *exit_code_ptr , int *signal_ptr, int *coredump_ptr,75 int block)75 remote_status (int *exit_code_ptr UNUSED, int *signal_ptr UNUSED, 76 int *coredump_ptr UNUSED, int block UNUSED) 76 77 { 77 78 errno = ECHILD; … … 99 100 /* Send signal SIG to child ID. Return 0 if successful, -1 if not. */ 100 101 int 101 remote_kill (int id , int sig)102 remote_kill (int id UNUSED, int sig UNUSED) 102 103 { 103 104 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.