Changeset 22b4b2e in rtems


Ignore:
Timestamp:
08/01/96 19:24:57 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
870f2976
Parents:
16bae52
Message:

added page delimiters for comment blocks

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/src/pthread.c

    r16bae52 r22b4b2e  
    233233}
    234234
     235/*PAGE
     236 *
     237 *  API Extension control structures
     238 */
     239
    235240API_extensions_Control _POSIX_Threads_API_extensions = {
    236241  { NULL, NULL },
     
    435440/*PAGE
    436441 *
    437  *  13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120
     442 *  13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120
    438443 */
    439444
     
    452457/*PAGE
    453458 *
    454  *  13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120
     459 *  13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120
    455460 */
    456461
    457462int pthread_attr_setschedparam(
    458   pthread_attr_t            *attr,
    459   const struct sched_param  *param
     463  pthread_attr_t           *attr,
     464  const struct sched_param *param
    460465)
    461466{
  • c/src/exec/posix/src/time.c

    r16bae52 r22b4b2e  
    8282}
    8383
    84 /*
     84/*PAGE
     85 *
    8586 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    8687 */
     
    150151}
    151152
    152 /*
     153/*PAGE
     154 *
    153155 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    154156 */
     
    168170
    169171    case CLOCK_REALTIME:
     172#if 0
    170173      if ( !_TOD_Is_set() )    /* XXX does posix allow it to not be set? */
    171174        set_errno_and_return_minus_one( EINVAL );
     175#endif
    172176 
    173177      _ISR_Disable( level );
     
    200204}
    201205
    202 /*
     206/*PAGE
     207 *
    203208 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    204209 */
     
    229234}
    230235
    231 /*
     236/*PAGE
     237 *
    232238 *  14.2.5 High Resolution Sleep, P1003.1b-1993, p. 269
    233239 */
     
    295301}
    296302
    297 /*
     303/*PAGE
     304 *
    298305 *  20.1.3 Accessing a Process CPU-time CLock, P1003.4b/D8, p. 55
    299306 */
     
    307314}
    308315
    309 /*
     316/*PAGE
     317 *
    310318 *  20.1.5 CPU-time Clock Attribute Access, P1003.4b/D8, p. 58
    311319 */
     
    319327}
    320328
    321 /*
     329/*PAGE
     330 *
    322331 *  20.1.5 CPU-time Clock Attribute Access, P1003.4b/D8, p. 58
    323332 */
  • cpukit/posix/src/pthread.c

    r16bae52 r22b4b2e  
    233233}
    234234
     235/*PAGE
     236 *
     237 *  API Extension control structures
     238 */
     239
    235240API_extensions_Control _POSIX_Threads_API_extensions = {
    236241  { NULL, NULL },
     
    435440/*PAGE
    436441 *
    437  *  13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120
     442 *  13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120
    438443 */
    439444
     
    452457/*PAGE
    453458 *
    454  *  13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120
     459 *  13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120
    455460 */
    456461
    457462int pthread_attr_setschedparam(
    458   pthread_attr_t            *attr,
    459   const struct sched_param  *param
     463  pthread_attr_t           *attr,
     464  const struct sched_param *param
    460465)
    461466{
  • cpukit/posix/src/time.c

    r16bae52 r22b4b2e  
    8282}
    8383
    84 /*
     84/*PAGE
     85 *
    8586 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    8687 */
     
    150151}
    151152
    152 /*
     153/*PAGE
     154 *
    153155 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    154156 */
     
    168170
    169171    case CLOCK_REALTIME:
     172#if 0
    170173      if ( !_TOD_Is_set() )    /* XXX does posix allow it to not be set? */
    171174        set_errno_and_return_minus_one( EINVAL );
     175#endif
    172176 
    173177      _ISR_Disable( level );
     
    200204}
    201205
    202 /*
     206/*PAGE
     207 *
    203208 *  14.2.1 Clocks, P1003.1b-1993, p. 263
    204209 */
     
    229234}
    230235
    231 /*
     236/*PAGE
     237 *
    232238 *  14.2.5 High Resolution Sleep, P1003.1b-1993, p. 269
    233239 */
     
    295301}
    296302
    297 /*
     303/*PAGE
     304 *
    298305 *  20.1.3 Accessing a Process CPU-time CLock, P1003.4b/D8, p. 55
    299306 */
     
    307314}
    308315
    309 /*
     316/*PAGE
     317 *
    310318 *  20.1.5 CPU-time Clock Attribute Access, P1003.4b/D8, p. 58
    311319 */
     
    319327}
    320328
    321 /*
     329/*PAGE
     330 *
    322331 *  20.1.5 CPU-time Clock Attribute Access, P1003.4b/D8, p. 58
    323332 */
Note: See TracChangeset for help on using the changeset viewer.