Changeset 738ad2e in mainline for generic/include


Ignore:
Timestamp:
2006-05-02T18:19:43Z (20 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.

Location:
generic/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ddi/ddi.h

    re34a141 r738ad2e  
    4040 * Interface to be implemented by all architectures.
    4141 */
    42 extern __native ddi_int_control_arch(__native enable, __native *flags);
    43 extern __native ddi_int_control(__native enable, __native *flags);
    4442extern int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size);
    4543
  • generic/include/security/cap.h

    re34a141 r738ad2e  
    6464
    6565/**
    66  * CAP_INT_CONTROL allows its holder to disable interrupts
     66 * CAP_PREEMPT_CONTROL allows its holder to disable interrupts
    6767 */
    68 #define CAP_INT_CONTROL         (1<<3)
     68#define CAP_PREEMPT_CONTROL         (1<<3)
    6969
    7070typedef __u32 cap_t;
  • generic/include/syscall/syscall.h

    re34a141 r738ad2e  
    3333        SYS_IO = 0,
    3434        SYS_TLS_SET = 1, /* Hardcoded in AMD64,IA32 uspace - psthread.S */
    35         SYS_INT_CONTROL = 2, /* Hardcoded in all SYSCALL handlers */
     35        SYS_PREEMPT_CONTROL,
    3636        SYS_THREAD_CREATE,
    3737        SYS_THREAD_EXIT,
Note: See TracChangeset for help on using the changeset viewer.