a972f4bacc
- macros used with RTS_SET group of macros to define struct proc p_rts_flags are now prefixed with RTS_ to make things clear
35 lines
812 B
C
35 lines
812 B
C
/* The kernel call implemented in this file:
|
|
* m_type: SYS_SETGRANT
|
|
*
|
|
* The parameters for this kernel call are:
|
|
* SG_ADDR address of grant table in own address space
|
|
* SG_SIZE number of entries
|
|
*/
|
|
|
|
#include "../system.h"
|
|
#include <minix/safecopies.h>
|
|
|
|
/*===========================================================================*
|
|
* do_setgrant *
|
|
*===========================================================================*/
|
|
PUBLIC int do_setgrant(m_ptr)
|
|
message *m_ptr;
|
|
{
|
|
struct proc *rp;
|
|
int r;
|
|
|
|
/* Who wants to set a parameter? */
|
|
rp = proc_addr(who_p);
|
|
|
|
/* Copy grant table set in priv. struct. */
|
|
if (RTS_ISSET(rp, RTS_NO_PRIV) || !(priv(rp))) {
|
|
r = EPERM;
|
|
} else {
|
|
_K_SET_GRANT_TABLE(rp,
|
|
(vir_bytes) m_ptr->SG_ADDR,
|
|
m_ptr->SG_SIZE);
|
|
r = OK;
|
|
}
|
|
|
|
return r;
|
|
}
|