Re: [patch V3a 17/18] posix-timers: Provide a mechanism to allocate a given timer ID
From: Cyrill Gorcunov
Date: Wed Mar 12 2025 - 08:41:30 EST
On Wed, Mar 12, 2025 at 12:24:54PM +0100, Thomas Gleixner wrote:
> + switch (ctrl) {
> + case PR_TIMER_CREATE_RESTORE_IDS_OFF:
> + current->signal->timer_create_restore_ids = 0;
> + return 0;
> + case PR_TIMER_CREATE_RESTORE_IDS_ON:
> + current->signal->timer_create_restore_ids = 0;
Thanks a huge, Thomas! I suspect this might be a typo, you need "= 1;" here )
Cyrill