diff options
| author | raf <none@none> | 2007-06-29 13:31:58 -0700 |
|---|---|---|
| committer | raf <none@none> | 2007-06-29 13:31:58 -0700 |
| commit | 883492d5a933deb34cd27521e7f2756773cd27af (patch) | |
| tree | 0c80cc8bc2b91d1882235f25cf28ef8ed0e4e6e3 /usr/src/lib/libc/port/threads/assfail.c | |
| parent | ec4858345aa8c9134ae2563545c54823cd78b5c8 (diff) | |
| download | illumos-joyent-883492d5a933deb34cd27521e7f2756773cd27af.tar.gz | |
PSARC 2007/285 robust locks revisited
6296770 process robust mutexes should be much faster
Diffstat (limited to 'usr/src/lib/libc/port/threads/assfail.c')
| -rw-r--r-- | usr/src/lib/libc/port/threads/assfail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libc/port/threads/assfail.c b/usr/src/lib/libc/port/threads/assfail.c index 0ffd9a3219..ac3e6a068f 100644 --- a/usr/src/lib/libc/port/threads/assfail.c +++ b/usr/src/lib/libc/port/threads/assfail.c @@ -216,7 +216,7 @@ lock_error(const mutex_t *mp, const char *who, void *cv, const char *msg) /* EMPTY */; else if (mcopy.mutex_lockw == 0) (void) strcat(buf, "\nthe lock is unowned"); - else if (!(mcopy.mutex_type & (USYNC_PROCESS|USYNC_PROCESS_ROBUST))) { + else if (!(mcopy.mutex_type & USYNC_PROCESS)) { (void) strcat(buf, "\nthe lock owner is "); ultos((uint64_t)mcopy.mutex_owner, 16, buf + strlen(buf)); } else { |
