Changeset 738ad2e in mainline for arch/amd64/src/ddi/ddi.c
- Timestamp:
- 2006-05-02T18:19:43Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 281224a
- Parents:
- e34a141
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/ddi/ddi.c
re34a141 r738ad2e 101 101 } 102 102 103 /** Enable/disable interrupts form syscall104 *105 * @param enable If non-zero, interrupts are enabled, otherwise disabled106 * @param flags RFLAGS register107 */108 __native ddi_int_control_arch(__native enable, __native *flags)109 {110 if (enable)111 *flags |= RFLAGS_IF;112 else113 *flags &= ~RFLAGS_IF;114 return 0;115 }116 117 103 /** Install I/O Permission bitmap. 118 104 *
Note:
See TracChangeset
for help on using the changeset viewer.