Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(872)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: src/untrusted/nacl/wait.c
Issue
24908002
:
Provide IRT process interface
Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set:
Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
src/untrusted/irt/irt_dev.h
src/untrusted/irt/irt_interfaces.h
src/untrusted/nacl/getpgid.c
src/untrusted/nacl/getsid.c
src/untrusted/nacl/kill.c
src/untrusted/nacl/nacl.gyp
src/untrusted/nacl/nacl.scons
src/untrusted/nacl/nacl_irt.h
src/untrusted/nacl/nacl_irt.c
src/untrusted/nacl/nacl_irt_fdio.c
src/untrusted/nacl/nacl_irt_process.c
src/untrusted/nacl/pipe.c
src/untrusted/nacl/posix_spawn.c
src/untrusted/nacl/setpgid.c
src/untrusted/nacl/setsid.c
src/untrusted/nacl/signal.c
src/untrusted/nacl/sigprocmask.c
src/untrusted/nacl/stubs/getppid.c
src/untrusted/nacl/stubs/kill.c
src/untrusted/nacl/stubs/pipe.c
src/untrusted/nacl/stubs/signal.c
src/untrusted/nacl/stubs/sigprocmask.c
src/untrusted/nacl/stubs/wait.c
src/untrusted/nacl/stubs/waitpid.c
src/untrusted/nacl/wait.c
src/untrusted/nacl/waitpid.c
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« src/untrusted/nacl/stubs/waitpid.c
('k') |
src/untrusted/nacl/waitpid.c »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
/*
2
* Copyright 2010 The Native Client Authors. All rights reserved.
3
* Use of this source code is governed by a BSD-style license that can
4
* be found in the LICENSE file.
5
*/
6
7
#include <sys/types.h>
8
#include <sys/wait.h>
9
#include <errno.h>
10
11
#include "native_client/src/untrusted/nacl/nacl_irt.h"
12
13
pid_t wait(int *status) {
14
if (__libnacl_irt_dev_process.wait == NULL) {
15
__libnacl_irt_process_init();
16
if (__libnacl_irt_dev_process.wait == NULL) {
17
errno = ENOSYS;
18
return -1;
19
}
20
}
21
22
pid_t pid;
23
int error = __libnacl_irt_dev_process.wait(&pid, status);
24
if (error) {
25
errno = error;
26
return -1;
27
}
28
29
return pid;
30
}
OLD
NEW
« no previous file with comments
|
« src/untrusted/nacl/stubs/waitpid.c
('k') |
src/untrusted/nacl/waitpid.c »
('j') |
no next file with comments »
Issue 24908002: Provide IRT process interface
Created 7 years, 2 months ago by Petr Hosek
Modified 7 years, 2 months ago
Reviewers:
Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Comments: 0
This is Rietveld
408576698