Changeset e9d15d9 in mainline for kernel/generic/include/proc/task.h


Ignore:
Timestamp:
2017-08-18T21:15:26Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24abb85d
Parents:
1c85bae
Message:

Turn IRQ structures into kernel objects

ipc_irq_subscribe() now returns a capability for the underlying IRQ kernel
object. ipc_irq_unsubscribe() can now be done only with a valid IRQ capability.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/proc/task.h

    r1c85bae re9d15d9  
    3737
    3838#include <cpu.h>
    39 #include <kobject/kobject.h>
    4039#include <ipc/ipc.h>
    4140#include <ipc/event.h>
     
    6665
    6766struct thread;
     67struct kobject;
    6868
    6969/** Task structure. */
     
    9898
    9999        /** Kernel objects */
    100         kobject_t kobject[MAX_KERNEL_OBJECTS];
     100        struct kobject *kobject;
    101101       
    102102        /* IPC stuff */
Note: See TracChangeset for help on using the changeset viewer.