mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-30 08:19:09 +00:00
procfs: Add self & exe symlinks like NetBSD does
NetBSD calls "curproc" "self" and "exe" "file" for proc. Reduce gratuitous differnces by including them as well. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/976
This commit is contained in:
parent
752a340419
commit
b75fa3a2de
@ -253,10 +253,14 @@ directory containing process information for process
|
||||
.Pa pid .
|
||||
.It Pa /proc/curproc
|
||||
directory containing process information for the current process
|
||||
.It Pa /proc/self
|
||||
directory containing process information for the current process
|
||||
.It Pa /proc/curproc/cmdline
|
||||
the process executable name
|
||||
.It Pa /proc/curproc/etype
|
||||
executable type
|
||||
.It Pa /proc/curproc/exe
|
||||
executable image
|
||||
.It Pa /proc/curproc/file
|
||||
executable image
|
||||
.It Pa /proc/curproc/fpregs
|
||||
|
@ -158,6 +158,8 @@ procfs_init(PFS_INIT_ARGS)
|
||||
|
||||
pfs_create_link(root, "curproc", procfs_docurproc,
|
||||
NULL, NULL, NULL, 0);
|
||||
pfs_create_link(root, "self", procfs_docurproc,
|
||||
NULL, NULL, NULL, 0);
|
||||
|
||||
dir = pfs_create_dir(root, "pid",
|
||||
procfs_attr_all_rx, NULL, NULL, PFS_PROCDEP);
|
||||
@ -188,6 +190,8 @@ procfs_init(PFS_INIT_ARGS)
|
||||
|
||||
pfs_create_link(dir, "file", procfs_doprocfile,
|
||||
NULL, procfs_notsystem, NULL, 0);
|
||||
pfs_create_link(dir, "exe", procfs_doprocfile,
|
||||
NULL, procfs_notsystem, NULL, 0);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user