Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/console/console.h

    r90dd8aee r690ad20  
    3636#define KERN_CONSOLE_H_
    3737
    38 #include <typedefs.h>
    39 #include <print.h>
    4038#include <console/chardev.h>
    4139#include <synch/spinlock.h>
     
    6664extern void kio_update(void *);
    6765extern void kio_flush(void);
    68 extern void kio_push_char(const char32_t);
    69 SPINLOCK_EXTERN(kio_lock);
     66extern void kio_push_bytes(const char *, size_t);
     67extern irq_spinlock_t kio_lock;
    7068
     69extern sysarg_t sys_kio_read(uspace_addr_t buf, size_t size, size_t at);
    7170extern sys_errno_t sys_kio(int cmd, uspace_addr_t buf, size_t size);
    7271
     
    7978extern void console_unlock(void);
    8079
     80extern void putstr(const char *s, size_t n);
     81
    8182#endif /* KERN_CONSOLE_H_ */
    8283
Note: See TracChangeset for help on using the changeset viewer.