Changeset f6ab787 in mainline for uspace


Ignore:
Timestamp:
2014-08-12T07:14:50Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce3efa0
Parents:
238869ca
Message:

rename sys_debug_activate_console to sys_debug_console in order to anticipate more generic use of the syscall in the near future

Location:
uspace
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/syscalls.c

    r238869ca rf6ab787  
    7979    [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data",              5,      V_ERRNO },
    8080
    81     [SYS_DEBUG_ACTIVATE_CONSOLE] = { "debug_activate_console", 0,       V_ERRNO },
     81    [SYS_DEBUG_CONSOLE] = { "debug_console", 0, V_ERRNO },
    8282    [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox",      1,      V_ERRNO }
    8383};
  • uspace/lib/c/generic/io/console.c

    r238869ca rf6ab787  
    7575bool console_kcon(void)
    7676{
    77         return __SYSCALL0(SYS_DEBUG_ACTIVATE_CONSOLE);
     77        return __SYSCALL0(SYS_DEBUG_CONSOLE);
    7878}
    7979
  • uspace/srv/hid/compositor/compositor.c

    r238869ca rf6ab787  
    20632063                fibril_mutex_unlock(&viewport_list_mtx);
    20642064        } else if (kconsole_switch) {
    2065                 __SYSCALL0(SYS_DEBUG_ACTIVATE_CONSOLE);
     2065                __SYSCALL0(SYS_DEBUG_CONSOLE);
    20662066        } else {
    20672067                window_event_t *event = (window_event_t *) malloc(sizeof(window_event_t));
Note: See TracChangeset for help on using the changeset viewer.