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:
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user