Start fs implementation for DragonFly BSD
This commit is contained in:
parent
fe01d2faa1
commit
10660ac8ed
|
@ -0,0 +1,13 @@
|
|||
#include <sys/types.h>
|
||||
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include "fs.h"
|
||||
|
||||
char *get_exename(char *buf, size_t size)
|
||||
{
|
||||
int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
|
||||
|
||||
sysctl(mib, 4, buf, &size, 0, 0);
|
||||
return buf;
|
||||
}
|
Loading…
Reference in New Issue