ish/fs/dev.c
Theodore Dubois 088e7b727d Implement ptys
Also a bunch of somewhat related changes, I was too lazy to break this into more than one commit
2019-01-21 12:20:43 -08:00

27 lines
644 B
C

#include "kernel/errno.h"
#include "fs/fd.h"
#include "fs/dev.h"
#include "fs/mem.h"
#include "fs/tty.h"
struct dev_ops *block_devs[256] = {
// no block devices yet
};
struct dev_ops *char_devs[256] = {
[1] = &mem_dev,
[4] = &tty_dev,
[5] = &tty_dev,
[TTY_PSEUDO_MASTER_MAJOR] = &tty_dev,
[TTY_PSEUDO_SLAVE_MAJOR] = &tty_dev,
};
int dev_open(int major, int minor, int type, struct fd *fd) {
struct dev_ops *dev = (type == DEV_BLOCK ? block_devs : char_devs)[major];
if (dev == NULL)
return _ENXIO;
fd->ops = &dev->fd;
if (!dev->open)
return 0;
return dev->open(major, minor, fd);
}