Changeset 738ad2e in mainline for arch/amd64/src/ddi/ddi.c


Ignore:
Timestamp:
2006-05-02T18:19:43Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
281224a
Parents:
e34a141
Message:

Changed interrupt_control to preemption_control.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/ddi/ddi.c

    re34a141 r738ad2e  
    101101}
    102102
    103 /** Enable/disable interrupts form syscall
    104  *
    105  * @param enable If non-zero, interrupts are enabled, otherwise disabled
    106  * @param flags RFLAGS register
    107  */
    108 __native ddi_int_control_arch(__native enable, __native *flags)
    109 {
    110         if (enable)
    111                 *flags |= RFLAGS_IF;
    112         else
    113                 *flags &= ~RFLAGS_IF;
    114         return 0;
    115 }
    116 
    117103/** Install I/O Permission bitmap.
    118104 *
Note: See TracChangeset for help on using the changeset viewer.