Searched hist:"367 a13f905874f6ad0a5f78cb88a4923cfe86e5e" (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/compat/linux/ |
H A D | linux_fork.c | diff 367a13f905874f6ad0a5f78cb88a4923cfe86e5e Fri Jul 31 12:21:58 CEST 2015 Ed Schouten <ed@FreeBSD.org> Limit rights on process descriptors.
On CloudABI, the rights bits returned by cap_rights_get() match up with the operations that you can actually perform on the file descriptor.
Limiting the rights is good, because it makes it easier to get uniform behaviour across different operating systems. If process descriptors on FreeBSD would suddenly gain support for any new file operation, this wouldn't become exposed to CloudABI processes without first extending the rights.
Extend fork1() to gain a 'struct filecaps' argument that allows you to construct process descriptors with custom rights. Use this in cloudabi_sys_proc_fork() to limit the rights to just fstat() and pdwait().
Obtained from: https://github.com/NuxiNL/freebsd
|
/freebsd/sys/kern/ |
H A D | kern_kthread.c | diff 367a13f905874f6ad0a5f78cb88a4923cfe86e5e Fri Jul 31 12:21:58 CEST 2015 Ed Schouten <ed@FreeBSD.org> Limit rights on process descriptors.
On CloudABI, the rights bits returned by cap_rights_get() match up with the operations that you can actually perform on the file descriptor.
Limiting the rights is good, because it makes it easier to get uniform behaviour across different operating systems. If process descriptors on FreeBSD would suddenly gain support for any new file operation, this wouldn't become exposed to CloudABI processes without first extending the rights.
Extend fork1() to gain a 'struct filecaps' argument that allows you to construct process descriptors with custom rights. Use this in cloudabi_sys_proc_fork() to limit the rights to just fstat() and pdwait().
Obtained from: https://github.com/NuxiNL/freebsd
|
H A D | init_main.c | diff 367a13f905874f6ad0a5f78cb88a4923cfe86e5e Fri Jul 31 12:21:58 CEST 2015 Ed Schouten <ed@FreeBSD.org> Limit rights on process descriptors.
On CloudABI, the rights bits returned by cap_rights_get() match up with the operations that you can actually perform on the file descriptor.
Limiting the rights is good, because it makes it easier to get uniform behaviour across different operating systems. If process descriptors on FreeBSD would suddenly gain support for any new file operation, this wouldn't become exposed to CloudABI processes without first extending the rights.
Extend fork1() to gain a 'struct filecaps' argument that allows you to construct process descriptors with custom rights. Use this in cloudabi_sys_proc_fork() to limit the rights to just fstat() and pdwait().
Obtained from: https://github.com/NuxiNL/freebsd
|
H A D | kern_fork.c | diff 367a13f905874f6ad0a5f78cb88a4923cfe86e5e Fri Jul 31 12:21:58 CEST 2015 Ed Schouten <ed@FreeBSD.org> Limit rights on process descriptors.
On CloudABI, the rights bits returned by cap_rights_get() match up with the operations that you can actually perform on the file descriptor.
Limiting the rights is good, because it makes it easier to get uniform behaviour across different operating systems. If process descriptors on FreeBSD would suddenly gain support for any new file operation, this wouldn't become exposed to CloudABI processes without first extending the rights.
Extend fork1() to gain a 'struct filecaps' argument that allows you to construct process descriptors with custom rights. Use this in cloudabi_sys_proc_fork() to limit the rights to just fstat() and pdwait().
Obtained from: https://github.com/NuxiNL/freebsd
|
/freebsd/sys/sys/ |
H A D | proc.h | diff 367a13f905874f6ad0a5f78cb88a4923cfe86e5e Fri Jul 31 12:21:58 CEST 2015 Ed Schouten <ed@FreeBSD.org> Limit rights on process descriptors.
On CloudABI, the rights bits returned by cap_rights_get() match up with the operations that you can actually perform on the file descriptor.
Limiting the rights is good, because it makes it easier to get uniform behaviour across different operating systems. If process descriptors on FreeBSD would suddenly gain support for any new file operation, this wouldn't become exposed to CloudABI processes without first extending the rights.
Extend fork1() to gain a 'struct filecaps' argument that allows you to construct process descriptors with custom rights. Use this in cloudabi_sys_proc_fork() to limit the rights to just fstat() and pdwait().
Obtained from: https://github.com/NuxiNL/freebsd
|