Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Unified Diff: libc/arch-nacl/syscalls/kill.c

Issue 156883002: Prep dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/native_client/nacl-bionic.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libc/arch-nacl/bionic/crtend.c ('k') | libc/arch-nacl/syscalls/mkdir.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libc/arch-nacl/syscalls/kill.c
diff --git a/libc/arch-nacl/syscalls/kill.c b/libc/arch-nacl/syscalls/kill.c
new file mode 100644
index 0000000000000000000000000000000000000000..34a274b91161173b26c3f77dfa116b2d44bbca00
--- /dev/null
+++ b/libc/arch-nacl/syscalls/kill.c
@@ -0,0 +1,8 @@
+#include <errno.h>
+#include <signal.h>
+
+int kill(pid_t pid, int sig) {
+ errno = ENOSYS;
+ return -1;
+}
+
« no previous file with comments | « libc/arch-nacl/bionic/crtend.c ('k') | libc/arch-nacl/syscalls/mkdir.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698