X-Git-Url: https://git.danieliu.xyz/?p=st.git;a=blobdiff_plain;f=st.c;h=3abf1b021258ce2b7f16f24bd1e14aa3247ed595;hp=8c022b7dec849b0f9444440108d716c1661df255;hb=4649bab45b4c23489b6dea7cd6aa719060f39ce4;hpb=df9ce0019053c51e62d79979a5c0bd67a3beb64f diff --git a/st.c b/st.c index 8c022b7..3abf1b0 100644 --- a/st.c +++ b/st.c @@ -28,6 +28,9 @@ #elif defined(__FreeBSD__) || defined(__DragonFly__) #include #endif +#if defined(__OpenBSD__) + #include +#endif /* Arbitrary sizes */ #define UTF_INVALID 0xFFFD @@ -243,6 +246,22 @@ static TCursor c[3]; static inline int rows() { return IS_SET(MODE_ALTSCREEN) ? term.row : buffSize;} static inline int rangeY(int i) { while (i < 0) i += rows(); return i % rows();} +int +subprocwd(char *path) +{ +#if defined(__linux) + if (snprintf(path, PATH_MAX, "/proc/%d/cwd", pid) < 0) + return -1; + return 0; +#elif defined(__OpenBSD__) + size_t sz = PATH_MAX; + int name[3] = {CTL_KERN, KERN_PROC_CWD, pid}; + if (sysctl(name, 3, path, &sz, 0, 0) == -1) + return -1; + return 0; +#endif +} + ssize_t xwrite(int fd, const char *s, size_t len) { @@ -812,7 +831,7 @@ ttynew(char *line, char *cmd, char *out, char **args) break; default: #ifdef __OpenBSD__ - if (pledge("stdio rpath tty proc", NULL) == -1) + if (pledge("stdio rpath tty proc ps exec", NULL) == -1) die("pledge\n"); #endif close(s);