Commit 879a02a
authored
[POSIX]Implement signal functions in Starboard (youtube#6033)
This PR did four things:
1. Export symbol for kill, raise, pause and signal in Starboard.
2. Implements signal functions with Starboard wrappers, including:
- sigaction
- pthread_sigmask
3. Add musl implementation for the below functions:
- sigaddset
- sigdelset
- sigemptyset
- sigfillset
- sigprocmask
- sigismember
4. Move pthread_kill to signal wrappers from pthread wrappers.
Bug: 4124558901 parent 69d4151 commit 879a02a
File tree
13 files changed
+926
-27
lines changed- starboard
- elf_loader
- nplb
- posix_compliance
- tools/api_leak_detector
- evergreen
- third_party/musl
13 files changed
+926
-27
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
55 | 56 | | |
56 | 57 | | |
57 | 58 | | |
| 59 | + | |
58 | 60 | | |
59 | 61 | | |
60 | 62 | | |
| |||
240 | 242 | | |
241 | 243 | | |
242 | 244 | | |
| 245 | + | |
243 | 246 | | |
244 | 247 | | |
245 | 248 | | |
| |||
252 | 255 | | |
253 | 256 | | |
254 | 257 | | |
| 258 | + | |
255 | 259 | | |
256 | 260 | | |
257 | 261 | | |
258 | 262 | | |
| 263 | + | |
259 | 264 | | |
260 | 265 | | |
261 | 266 | | |
| |||
267 | 272 | | |
268 | 273 | | |
269 | 274 | | |
| 275 | + | |
270 | 276 | | |
271 | 277 | | |
272 | 278 | | |
| |||
366 | 372 | | |
367 | 373 | | |
368 | 374 | | |
| 375 | + | |
369 | 376 | | |
370 | 377 | | |
371 | 378 | | |
| |||
375 | 382 | | |
376 | 383 | | |
377 | 384 | | |
| 385 | + | |
378 | 386 | | |
379 | 387 | | |
380 | 388 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
150 | 150 | | |
151 | 151 | | |
152 | 152 | | |
| 153 | + | |
153 | 154 | | |
154 | 155 | | |
155 | 156 | | |
| |||
0 commit comments