about summary refs log tree commit diff stats
path: root/kernel.soso/null.c
blob: aef2861cc961d2e3ded0b812e1a9ff8a4bdd7042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "null.h"
#include "devfs.h"
#include "device.h"
#include "common.h"

static BOOL null_open(File *file, uint32 flags);

void initializeNull() {
    Device device;
    memset((uint8*)&device, 0, sizeof(Device));
    strcpy(device.name, "null");
    device.deviceType = FT_CharacterDevice;
    device.open = null_open;

    registerDevice(&device);
}

static BOOL null_open(File *file, uint32 flags) {
    return TRUE;
}
font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/python
"""Generate pydoc documentation and move it to the doc directory.
THIS WILL DELETE ALL EXISTING HTML FILES IN THAT DIRECTORY, so don't
store important content there."""

import pydoc, os, sys
if __name__ == '__main__':
	docdir = 'doc/pydoc'
	os.chdir(sys.path[0])
	try: os.mkdir(docdir)
	except: pass


	for fname in os.listdir(docdir):
		if fname.endswith('.html'):
			os.remove(os.path.join(docdir, fname))

	pydoc.writedocs('.')
	pydoc.writedoc('curses')
	pydoc.writedoc('curses.ascii')
	pydoc.writedoc('os')
	pydoc.writedoc('os.path')
	pydoc.writedoc('sys')

	for fname in os.listdir('.'):
		if fname.endswith('.html'):
			os.rename(fname, os.path.join(docdir, fname))