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

Unified Diff: src/untrusted/nacl/sigprocmask.c

Issue 24908002: Provide IRT process interface Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 3 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 | « src/untrusted/nacl/signal.c ('k') | src/untrusted/nacl/stubs/getppid.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/nacl/sigprocmask.c
diff --git a/src/untrusted/nacl/access.c b/src/untrusted/nacl/sigprocmask.c
similarity index 54%
copy from src/untrusted/nacl/access.c
copy to src/untrusted/nacl/sigprocmask.c
index 2469613350cfd15e8f921ebd121e5cb87a2962b6..fb6d62a780e4017a01fa5186ea2fb9bee00849a6 100644
--- a/src/untrusted/nacl/access.c
+++ b/src/untrusted/nacl/sigprocmask.c
@@ -5,17 +5,17 @@
*/
#include <errno.h>
-#include <unistd.h>
+#include <signal.h>
#include "native_client/src/untrusted/nacl/nacl_irt.h"
-int access(const char *pathname, int mode) {
- if (!__libnacl_irt_init_fn(&__libnacl_irt_dev_filename.access,
- __libnacl_irt_dev_filename_init)) {
+int sigprocmask(int how, const sigset_t *set, sigset_t *oldset) {
+ if (!__libnacl_irt_init_fn(&__libnacl_irt_dev_process.sigprocmask,
+ __libnacl_irt_dev_process_init)) {
return -1;
}
- int error = __libnacl_irt_dev_filename.access(pathname, mode);
+ int error = __libnacl_irt_dev_process.sigprocmask(how, set, oldset);
if (error) {
errno = error;
return -1;
« no previous file with comments | « src/untrusted/nacl/signal.c ('k') | src/untrusted/nacl/stubs/getppid.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698