Changeset c05a50f in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2008-06-06T23:17:16Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d62052
Parents:
1c03c17
Message:

rename SYS_IO to SYS_KLOG
do not notify uspace klog with every single character, introduce some latency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/syscall/syscall.c

    r1c03c17 rc05a50f  
    5858 *
    5959 */
    60 static unative_t sys_io(int fd, const void * buf, size_t count)
     60static unative_t sys_klog(int fd, const void * buf, size_t count)
    6161{
    6262        size_t i;
     
    115115
    116116syshandler_t syscall_table[SYSCALL_END] = {
    117         (syshandler_t) sys_io,
     117        (syshandler_t) sys_klog,
    118118        (syshandler_t) sys_tls_set,
    119119       
Note: See TracChangeset for help on using the changeset viewer.