mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 01:59:04 +00:00
The plan is to replace tons of if (type == TTY_TYPE_FOO) checks with type->something dereferences. To do this, start with replacing int type with struct tty_type * in relevant places and fixing compilation. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
50 lines
983 B
C
50 lines
983 B
C
#ifndef __CR_TTY_H__
|
|
#define __CR_TTY_H__
|
|
|
|
#include <linux/major.h>
|
|
#include <linux/vt.h>
|
|
|
|
#include "files.h"
|
|
|
|
/* Kernel's limit */
|
|
#define TERMIOS_NCC 19
|
|
|
|
enum {
|
|
TTY_TYPE_UNKNOWN = 0,
|
|
TTY_TYPE_PTM = 1,
|
|
TTY_TYPE_PTS = 2,
|
|
TTY_TYPE_CONSOLE = 3,
|
|
TTY_TYPE_VT = 4,
|
|
|
|
TTY_TYPE_MAX
|
|
};
|
|
|
|
#define PTMX_PATH "/dev/ptmx"
|
|
#ifndef PTMX_MINOR
|
|
# define PTMX_MINOR 2
|
|
#endif
|
|
#define PTS_FMT "/dev/pts/%d"
|
|
|
|
extern const struct fdtype_ops tty_dump_ops;
|
|
|
|
struct tty_type;
|
|
struct tty_type *get_tty_type(int major, int minor);
|
|
static inline int is_tty(int major, int minor)
|
|
{
|
|
return get_tty_type(major, minor) != NULL;
|
|
}
|
|
|
|
extern int dump_verify_tty_sids(void);
|
|
extern struct collect_image_info tty_info_cinfo;
|
|
extern struct collect_image_info tty_cinfo;
|
|
extern int prepare_shared_tty(void);
|
|
extern int tty_setup_slavery(void);
|
|
|
|
extern int tty_verify_active_pairs(void);
|
|
|
|
extern int tty_prep_fds(void);
|
|
extern void tty_fini_fds(void);
|
|
|
|
#define OPT_SHELL_JOB "shell-job"
|
|
|
|
#endif /* __CR_TTY_H__ */
|