| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2013 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <sys/stat.h> | 8 #include <signal.h> |
| 9 #include <sys/types.h> | 9 #include <sys/types.h> |
| 10 | 10 |
| 11 #include "native_client/src/untrusted/nacl/nacl_irt.h" | 11 #include "native_client/src/untrusted/nacl/nacl_irt.h" |
| 12 | 12 |
| 13 int fchmod(int fd, mode_t mode) { | 13 int kill(pid_t pid, int sig) { |
| 14 if (!__libnacl_irt_init_fn(&__libnacl_irt_dev_fdio.fchmod, | 14 if (!__libnacl_irt_init_fn(&__libnacl_irt_dev_process.kill, |
| 15 __libnacl_irt_dev_fdio_init)) { | 15 __libnacl_irt_dev_process_init)) { |
| 16 return -1; | 16 return -1; |
| 17 } | 17 } |
| 18 | 18 |
| 19 int error = __libnacl_irt_dev_fdio.fchmod(fd, mode); | 19 int error = __libnacl_irt_dev_process.kill(pid, sig); |
| 20 if (error) { | 20 if (error) { |
| 21 errno = error; | 21 errno = error; |
| 22 return -1; | 22 return -1; |
| 23 } | 23 } |
| 24 | 24 |
| 25 return 0; | 25 return 0; |
| 26 } | 26 } |
| OLD | NEW |