Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 585 → Rev 586

/kernel/trunk/generic/include/interrupt.h
32,7 → 32,7
#include <arch/interrupt.h>
 
#ifndef IVT_ITEMS
# define IVT_ITEMS 1
# define IVT_ITEMS 0
#endif
 
typedef void (* iroutine)(int n, void *stack);
/kernel/trunk/generic/include/console/chardev.h
36,14 → 36,11
 
#define CHARDEV_BUFLEN 512
 
struct chardev;
 
/* Character device operations interface. */
struct chardev_operations {
void (* suspend)(struct chardev *);/**< Suspend pushing characters. */
void (* resume)(struct chardev *); /**< Resume pushing characters. */
/** Write character to stream */
void (* write)(struct chardev *, char c);
void (* suspend)(chardev_t *); /**< Suspend pushing characters. */
void (* resume)(chardev_t *); /**< Resume pushing characters. */
void (* write)(chardev_t *, char c); /**< Write character to stream. */
};
 
typedef struct chardev_operations chardev_operations_t;
/kernel/trunk/generic/src/interrupt/interrupt.c
112,7 → 112,7
 
static cmd_info_t exc_info = {
.name = "pexc",
.description = "Print exception table",
.description = "Print exception table.",
.func = exc_print_cmd,
.help = NULL,
.argc = 0,