1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

(set_int): Support INIT_TRACEMASK.

This commit is contained in:
Miles Bader
1996-05-23 00:08:54 +00:00
parent d55dc14f28
commit fe4d0ab794
2 changed files with 8 additions and 0 deletions

View File

@ -85,6 +85,10 @@ _hurd_exec (task_t task, file_t file,
/* We will set these all below. */ /* We will set these all below. */
break; break;
case INIT_TRACEMASK:
ints[i] = _hurdsig_traced;
break;
default: default:
ints[i] = 0; ints[i] = 0;
} }

View File

@ -239,6 +239,10 @@ set_int (int which, int value)
} }
__spin_unlock (&ss->lock); __spin_unlock (&ss->lock);
return 0; return 0;
case INIT_TRACEMASK:
_hurdsig_traced = value;
return 0;
} }
default: default:
return EINVAL; return EINVAL;