null.c 1.15 KB
Newer Older
Jeff Dike's avatar
Jeff Dike committed
1 2 3 4 5
/* 
 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

6
#include <stdlib.h>
Jeff Dike's avatar
Jeff Dike committed
7 8 9 10 11 12 13 14 15 16 17 18
#include <errno.h>
#include <fcntl.h>
#include "chan_user.h"
#include "os.h"

static int null_chan;

void *null_init(char *str, int device, struct chan_opts *opts)
{
	return(&null_chan);
}

19
int null_open(int input, int output, int primary, void *d, char **dev_out)
Jeff Dike's avatar
Jeff Dike committed
20
{
21
	*dev_out = NULL;
Jeff Dike's avatar
Jeff Dike committed
22 23 24 25 26 27 28 29 30 31 32 33 34
	return(os_open_file(DEV_NULL, of_rdwr(OPENFLAGS()), 0));
}

int null_read(int fd, char *c_out, void *unused)
{
	return(-ENODEV);
}

void null_free(void *data)
{
}

struct chan_ops null_ops = {
35
	type:		"null",
Jeff Dike's avatar
Jeff Dike committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
	init:		null_init,
	open:		null_open,
	close:		generic_close,
	read:		null_read,
	write:		generic_write,
	console_write:	generic_console_write,
	window_size:	generic_window_size,
	free:		null_free,
	winch:		0,
};

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * Emacs will notice this stuff at the end of the file and automatically
 * adjust the settings for this buffer only.  This must remain at the end
 * of the file.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-file-style: "linux"
 * End:
 */