Ignore:
Timestamp:
Jul 31, 2020, 4:02:04 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
3e2b9c9
Parents:
3ac8b9f
Message:

First attempt at reducing complation time by restructuring the code.
Notably, starting the runtime has been moved to kernel/startup.cfa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/io.cfa

    r3ac8b9f re660761  
    1616#if defined(__CFA_DEBUG__)
    1717        // #define __CFA_DEBUG_PRINT_IO__
    18         #define __CFA_DEBUG_PRINT_IO_CORE__
     18        // #define __CFA_DEBUG_PRINT_IO_CORE__
    1919#endif
    2020
     
    173173} iopoll;
    174174
    175 void __kernel_io_startup() {
     175void __kernel_io_startup(void) {
    176176        __cfaabi_dbg_print_safe( "Kernel : Creating EPOLL instance\n" );
    177177
     
    187187}
    188188
    189 void __kernel_io_shutdown() {
     189void __kernel_io_shutdown(void) {
    190190        // Notify the io poller thread of the shutdown
    191191        iopoll.run = false;
Note: See TracChangeset for help on using the changeset viewer.