Changeset 0cb7cb9 in rtems


Ignore:
Timestamp:
11/16/99 16:10:39 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ce18601a
Parents:
d3fdf459
Message:

Added comments.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/src/threadclose.c

    rd3fdf459 r0cb7cb9  
    3333 *  DESCRIPTION:
    3434 *
    35  *  XXX
     35 *  This routine frees all memory associated with the specified
     36 *  thread and removes it from the local object table so no further
     37 *  operations on this thread are allowed.
    3638 */
    3739 
  • c/src/exec/score/src/threadinitialize.c

    rd3fdf459 r0cb7cb9  
    3232 *  _Thread_Initialize
    3333 *
    34  *  XXX
     34 *  This routine initializes the specified the thread.  It allocates
     35 *  all memory associated with this thread.  It completes by adding
     36 *  the thread to the local object table so operations on this
     37 *  thread id are allowed.
    3538 */
    3639
  • c/src/exec/score/src/threadstart.c

    rd3fdf459 r0cb7cb9  
    3333 *  DESCRIPTION:
    3434 *
    35  *  XXX
     35 *  This routine initializes the executable information for a thread
     36 *  and makes it ready to execute.  After this routine executes, the
     37 *  thread competes with all other threads for CPU time.
    3638 */
    3739 
  • cpukit/score/src/threadclose.c

    rd3fdf459 r0cb7cb9  
    3333 *  DESCRIPTION:
    3434 *
    35  *  XXX
     35 *  This routine frees all memory associated with the specified
     36 *  thread and removes it from the local object table so no further
     37 *  operations on this thread are allowed.
    3638 */
    3739 
  • cpukit/score/src/threadinitialize.c

    rd3fdf459 r0cb7cb9  
    3232 *  _Thread_Initialize
    3333 *
    34  *  XXX
     34 *  This routine initializes the specified the thread.  It allocates
     35 *  all memory associated with this thread.  It completes by adding
     36 *  the thread to the local object table so operations on this
     37 *  thread id are allowed.
    3538 */
    3639
  • cpukit/score/src/threadstart.c

    rd3fdf459 r0cb7cb9  
    3333 *  DESCRIPTION:
    3434 *
    35  *  XXX
     35 *  This routine initializes the executable information for a thread
     36 *  and makes it ready to execute.  After this routine executes, the
     37 *  thread competes with all other threads for CPU time.
    3638 */
    3739 
Note: See TracChangeset for help on using the changeset viewer.