Changeset 520492a in mainline for libc/include/psthread.h


Ignore:
Timestamp:
2006-03-24T13:57:43Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4c5de5
Parents:
4f2c821
Message:

Improve comments in psthread.c
Rename pt→list to pt→link.
Rename ps_preempt() to psthread_schedule_next().
Rename ps_join() to psthread_join().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/include/psthread.h

    r4f2c821 r520492a  
    4545        struct psthread_data *self; /* ia32, amd64 needs to get self address */
    4646
    47         link_t list;
     47        link_t link;
    4848        context_t ctx;
    4949        void *stack;
     
    6262
    6363pstid_t psthread_create(int (*func)(void *), void *arg);
    64 int ps_preempt(void);
    65 int ps_join(pstid_t psthrid);
     64int psthread_schedule_next(void);
     65int psthread_join(pstid_t psthrid);
    6666
    6767#endif
Note: See TracChangeset for help on using the changeset viewer.