Skip to content

Commit a890055

Browse files
committed
Dummy doc and log fixes
1 parent 0a431e7 commit a890055

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/signal-tests/signal-test-blocked.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static void *threadMain(void *info) {
4545

4646
sigset_t set;
4747
sigpending(&set);
48-
fprintf(stderr, " Other thread pending: %d\n", sigismember(&set, s));
48+
fprintf(stderr, "🧵 Other thread pending: %d\n", sigismember(&set, s));
4949

5050
sigemptyset(&set);
5151
sigaddset(&set, s);

Sources/SignalHandling/DelayedSigaction/SigactionDelayer_Unsig.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public enum SigactionDelayer_Unsig {
371371
 * threads are not caught. Seems mostly true on Linux, but
372372
 * might require some tweaking.
373373
 * These signals are not caught by libdispatch… but signals
374-
 * are process- wide! And the sigaction is still executed. So
374+
 * are process-wide! And the sigaction is still executed. So
375375
 * we can reset the sigaction to the original value, send the
376376
 * signal to the thread, and set it back to ignore after that.
377377
 * The original signal handler will be executed.

0 commit comments

Comments
 (0)