Changeset 5573942 in mainline for kernel/generic/include/synch/waitq.h


Ignore:
Timestamp:
2007-02-04T11:46:18Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
15819e37
Parents:
cf5ddf6
Message:

Revert thread_interrupt_sleep() to waitq_interrupt_sleep().
I'd prefer that this, IMO, waitq related stuff stays together.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/synch/waitq.h

    rcf5ddf6 r5573942  
    6464        waitq_sleep_timeout((wq), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
    6565
     66struct thread;
     67
    6668extern void waitq_initialize(waitq_t *wq);
    6769extern int waitq_sleep_timeout(waitq_t *wq, uint32_t usec, int flags);
     
    7173extern void waitq_wakeup(waitq_t *wq, bool all);
    7274extern void _waitq_wakeup_unsafe(waitq_t *wq, bool all);
     75extern void waitq_interrupt_sleep(struct thread *t);
    7376
    7477#endif
Note: See TracChangeset for help on using the changeset viewer.