(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. */
break;
case INIT_TRACEMASK:
ints[i] = _hurdsig_traced;
break;
default:
ints[i] = 0;
}

View File

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