haiku/src/kernel/core/console.c
Axel Dörfler 8503a60446 Fixed typo that prevented compilation.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8271 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-07-02 02:57:29 +00:00

78 lines
1.2 KiB
C

/* This file contains the kprintf stuff and console init */
/*
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
** Distributed under the terms of the NewOS License.
*/
#include <OS.h>
#include <KernelExport.h>
#include <boot/kernel_args.h>
#include <console.h>
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
// from con.h
enum {
CONSOLE_OP_WRITEXY = 2376
};
struct console_op_xy_struct {
int x;
int y;
char buf[256];
};
static int console_fd = -1;
void
kprintf(const char *fmt, ...)
{
int ret = 0;
va_list args;
char temp[256];
if (console_fd >= 0) {
va_start(args, fmt);
ret = vsprintf(temp,fmt,args);
va_end(args);
write_pos(console_fd, 0, temp, ret);
}
}
void
kprintf_xy(int x, int y, const char *fmt, ...)
{
int ret = 0;
va_list args;
struct console_op_xy_struct buf;
if (console_fd >= 0) {
va_start(args, fmt);
ret = vsprintf(buf.buf,fmt,args);
va_end(args);
buf.x = x;
buf.y = y;
ioctl(console_fd, CONSOLE_OP_WRITEXY, &buf, ret + sizeof(buf.x) + sizeof(buf.y));
}
}
int
con_init(kernel_args *ka)
{
dprintf("con_init: entry\n");
console_fd = open("/dev/console", O_RDWR);
dprintf("console_fd = %d\n", console_fd);
return 0;
}