2002-12-09 07:00:07 +00:00
|
|
|
#ifndef PROC_DEVNAME_H
|
|
|
|
#define PROC_DEVNAME_H
|
|
|
|
|
2002-11-25 10:16:33 +00:00
|
|
|
#include "procps.h"
|
2011-06-05 13:23:15 +02:00
|
|
|
#include "readproc.h"
|
2002-11-25 10:16:33 +00:00
|
|
|
|
2002-12-09 07:00:07 +00:00
|
|
|
EXTERN_C_BEGIN
|
|
|
|
|
2002-02-01 22:47:29 +00:00
|
|
|
#define ABBREV_DEV 1 /* remove /dev/ */
|
|
|
|
#define ABBREV_TTY 2 /* remove tty */
|
|
|
|
#define ABBREV_PTS 4 /* remove pts/ */
|
|
|
|
|
2012-01-09 21:44:51 +11:00
|
|
|
extern unsigned dev_to_tty(char *__restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags);
|
2002-02-01 22:47:29 +00:00
|
|
|
|
2012-01-09 21:44:51 +11:00
|
|
|
extern int tty_to_dev(const char *__restrict const name);
|
2002-12-09 07:00:07 +00:00
|
|
|
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|