diff options
Diffstat (limited to 'usr/src/uts/sparc/os/syscall.c')
| -rw-r--r-- | usr/src/uts/sparc/os/syscall.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr/src/uts/sparc/os/syscall.c b/usr/src/uts/sparc/os/syscall.c index 6157f6addd..06e14ea513 100644 --- a/usr/src/uts/sparc/os/syscall.c +++ b/usr/src/uts/sparc/os/syscall.c @@ -20,8 +20,7 @@ */ /* - * Copyright 2010 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. + * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved. */ #include <sys/param.h> @@ -1197,8 +1196,10 @@ set_all_zone_usr_proc_sys(zoneid_t zoneid) */ if (zoneid == ALL_ZONES || p->p_zone->zone_id == zoneid) { mutex_enter(&p->p_lock); - if ((t = p->p_tlist) == NULL) + if ((t = p->p_tlist) == NULL) { + mutex_exit(&p->p_lock); continue; + } /* * Set pre- and post-syscall processing flags * for all threads of the process |
