procps-ng-NEXT
* library
Re-add elogind support merge #151
+ * pmap: Dont reuse stdin filehandle issue #231
* ps: threads again display when -L is used with -q issue #234
* ps: proper aix format string behavior was restored
* sysctl: print dotted keys again
void *addr;
int shmid;
char mapbuf_b[256];
+ FILE *fp;
- if (!freopen("/proc/self/maps", "r", stdin))
+ if ( (fp = fopen("/proc/self/maps", "r")) == NULL)
return;
/* create */
shmid = shmget(IPC_PRIVATE, 42, IPC_CREAT | 0666);
if (shmid == -1)
+ {
/* failed; oh well */
+ fclose(fp);
return;
+ }
/* attach */
addr = shmat(shmid, NULL, SHM_RDONLY);
if (addr == (void *)-1)
goto out_destroy;
- while (fgets(mapbuf_b, sizeof mapbuf_b, stdin)) {
+ while (fgets(mapbuf_b, sizeof mapbuf_b, fp)) {
char perms[32];
/* to clean up unprintables */
char *tmp;
perror(_("shared memory detach"));
out_destroy:
+ fclose(fp);
if (shmctl(shmid, IPC_RMID, NULL) && errno != EINVAL)
perror(_("shared memory remove"));