Introduce posix_spawn_file_actions_addchdir_np()

This commit is contained in:
Justine Tunney 2023-10-11 20:26:28 -07:00
parent f92ad74e6b
commit 3a1f887928
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
25 changed files with 446 additions and 748 deletions

View file

@ -133,7 +133,7 @@ errno_t pthread_setname_np(pthread_t thread, const char *name) {
BLOCK_CANCELATION;
err = pthread_setname_impl(pt, name);
ALLOW_CANCELATION;
STRACE("pthread_setname_np(%d, %s) → %s", _pthread_tid(pt), name,
STRACE("pthread_setname_np(%d, %#s) → %s", _pthread_tid(pt), name,
DescribeErrno(err));
return err;
}