Changeset c4808ca in rtems


Ignore:
Timestamp:
10/31/95 21:28:16 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
eedbfd9
Parents:
9700578
Message:

typos fixed

Files:
1 added
24 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/rtems/src/msg.c

    r9700578 rc4808ca  
    110110 *  Output parameters:
    111111 *    id                - queue id
    112  *    RTEMS_SUCCESSFUL - if successful
     112 *    RTEMS_SUCCESSFUL  - if successful
    113113 *    error code        - if unsuccessful
    114114 */
  • c/src/exec/rtems/src/region.c

    r9700578 rc4808ca  
    315315  void                    *the_segment;
    316316
     317  *segment = NULL;
     318
    317319  if ( size == 0 )
    318320    return RTEMS_INVALID_SIZE;
  • c/src/exec/sapi/headers/directives.h

    r9700578 rc4808ca  
    6363#define RTEMS_MESSAGE_QUEUE_SEND                        39
    6464#define RTEMS_MESSAGE_QUEUE_URGENT                      40
    65 #define RTEMS_MESSAGE_QUEUE_BROADCAst                   41
     65#define RTEMS_MESSAGE_QUEUE_BROADCAST                   41
    6666#define RTEMS_MESSAGE_QUEUE_RECEIVE                     42
    6767#define RTEMS_MESSAGE_QUEUE_FLUSH                       43
  • c/src/exec/sapi/headers/io.h

    r9700578 rc4808ca  
    116116
    117117rtems_status_code rtems_io_register_name(
    118     char *device_name,
    119     rtems_device_major_number major,
    120     rtems_device_minor_number minor
     118    char                      *device_name,
     119    rtems_device_major_number  major,
     120    rtems_device_minor_number  minor
    121121);
    122122
     
    131131
    132132rtems_status_code rtems_io_lookup_name(
    133     const char *pathname,
    134     rtems_driver_name_t **rnp
     133    const char           *name,
     134    rtems_driver_name_t **device_info
    135135);
    136136
     
    148148  rtems_device_major_number  major,
    149149  rtems_device_minor_number  minor,
    150   void             *argument
     150  void                      *argument
    151151);
    152152
     
    163163  rtems_device_major_number  major,
    164164  rtems_device_minor_number  minor,
    165   void             *argument
     165  void                      *argument
    166166);
    167167
     
    178178  rtems_device_major_number  major,
    179179  rtems_device_minor_number  minor,
    180   void             *argument
     180  void                      *argument
    181181);
    182182
     
    193193  rtems_device_major_number  major,
    194194  rtems_device_minor_number  minor,
    195   void             *argument
     195  void                      *argument
    196196);
    197197
     
    208208  rtems_device_major_number  major,
    209209  rtems_device_minor_number  minor,
    210   void             *argument
     210  void                      *argument
    211211);
    212212
     
    223223  rtems_device_major_number  major,
    224224  rtems_device_minor_number  minor,
    225   void             *argument
     225  void                      *argument
    226226);
    227227
  • c/src/exec/sapi/include/rtems/directives.h

    r9700578 rc4808ca  
    6363#define RTEMS_MESSAGE_QUEUE_SEND                        39
    6464#define RTEMS_MESSAGE_QUEUE_URGENT                      40
    65 #define RTEMS_MESSAGE_QUEUE_BROADCAst                   41
     65#define RTEMS_MESSAGE_QUEUE_BROADCAST                   41
    6666#define RTEMS_MESSAGE_QUEUE_RECEIVE                     42
    6767#define RTEMS_MESSAGE_QUEUE_FLUSH                       43
  • c/src/exec/sapi/include/rtems/io.h

    r9700578 rc4808ca  
    116116
    117117rtems_status_code rtems_io_register_name(
    118     char *device_name,
    119     rtems_device_major_number major,
    120     rtems_device_minor_number minor
     118    char                      *device_name,
     119    rtems_device_major_number  major,
     120    rtems_device_minor_number  minor
    121121);
    122122
     
    131131
    132132rtems_status_code rtems_io_lookup_name(
    133     const char *pathname,
    134     rtems_driver_name_t **rnp
     133    const char           *name,
     134    rtems_driver_name_t **device_info
    135135);
    136136
     
    148148  rtems_device_major_number  major,
    149149  rtems_device_minor_number  minor,
    150   void             *argument
     150  void                      *argument
    151151);
    152152
     
    163163  rtems_device_major_number  major,
    164164  rtems_device_minor_number  minor,
    165   void             *argument
     165  void                      *argument
    166166);
    167167
     
    178178  rtems_device_major_number  major,
    179179  rtems_device_minor_number  minor,
    180   void             *argument
     180  void                      *argument
    181181);
    182182
     
    193193  rtems_device_major_number  major,
    194194  rtems_device_minor_number  minor,
    195   void             *argument
     195  void                      *argument
    196196);
    197197
     
    208208  rtems_device_major_number  major,
    209209  rtems_device_minor_number  minor,
    210   void             *argument
     210  void                      *argument
    211211);
    212212
     
    223223  rtems_device_major_number  major,
    224224  rtems_device_minor_number  minor,
    225   void             *argument
     225  void                      *argument
    226226);
    227227
  • c/src/exec/sapi/src/io.c

    r9700578 rc4808ca  
    4747 *
    4848 *  Input Paramters:
     49 *    device_name - pointer to name string to associate with device
     50 *    major       - device major number to receive name
     51 *    minor       - device minor number to receive name
    4952 *
    5053 *  Output Parameters:
     54 *    RTEMS_SUCCESSFUL - if successful
     55 *    error code       - if unsuccessful
    5156 */
    5257
     
    9196 *
    9297 *  Input Paramters:
     98 *    name - name to lookup the associated device
    9399 *
    94100 *  Output Parameters:
     101 *    device_info      - device associate with name
     102 *    RTEMS_SUCCESSFUL - if successful
     103 *    error code       - if unsuccessful
    95104 */
    96105
    97106rtems_status_code rtems_io_lookup_name(
    98     const char           *pathname,
    99     rtems_driver_name_t **rnp
     107    const char           *name,
     108    rtems_driver_name_t **device_info
    100109)
    101110{
     
    107116         index++, np++ )
    108117        if (np->device_name)
    109             if (strncmp(np->device_name, pathname, np->device_name_length) == 0)
     118            if (strncmp(np->device_name, name, np->device_name_length) == 0)
    110119            {               
    111                 *rnp = np;
     120                *device_info = np;
    112121                return RTEMS_SUCCESSFUL;
    113122            }
    114123   
    115     *rnp = 0;
     124    *device_info = 0;
    116125    return RTEMS_UNSATISFIED;
    117126}
     
    166175  rtems_device_major_number  major,
    167176  rtems_device_minor_number  minor,
    168   void             *argument
     177  void                      *argument
    169178)
    170179{
     
    196205  rtems_device_major_number  major,
    197206  rtems_device_minor_number  minor,
    198   void             *argument
     207  void                      *argument
    199208)
    200209{
     
    226235  rtems_device_major_number  major,
    227236  rtems_device_minor_number  minor,
    228   void             *argument
     237  void                      *argument
    229238)
    230239{
     
    256265  rtems_device_major_number  major,
    257266  rtems_device_minor_number  minor,
    258   void             *argument
     267  void                      *argument
    259268)
    260269{
     
    286295  rtems_device_major_number  major,
    287296  rtems_device_minor_number  minor,
    288   void             *argument
     297  void                      *argument
    289298)
    290299{
  • c/src/exec/score/cpu/sparc/README

    r9700578 rc4808ca  
    109109from FP Task A to non-FP Task B and then to FP Task C.  In this scenario,
    110110the floating point state must technically be saved by a non-FP task.
    111 
    112 
    113 
    114 
    115 
    116 
    117 
    118 
  • c/src/exec/score/cpu/sparc/cpu.c

    r9700578 rc4808ca  
    11/*
    22 *  SPARC Dependent Source
     3 *
     4 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     5 *  On-Line Applications Research Corporation (OAR).
     6 *  All rights assigned to U.S. Government, 1994.
     7 *
     8 *  This material may be reproduced by or for the U.S. Government pursuant
     9 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     10 *  notice must appear in all copies of this file and its derivatives.
     11 *
     12 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     13 *  Research Corporation (OAR) under contract to the European Space
     14 *  Agency (ESA).
     15 *
     16 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     17 *  European Space Agency.
    318 *
    419 *  $Id$
  • c/src/exec/score/cpu/sparc/cpu.h

    r9700578 rc4808ca  
    33 *  This include file contains information pertaining to the port of
    44 *  the executive to the SPARC processor.
     5 *
     6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     7 *  On-Line Applications Research Corporation (OAR).
     8 *  All rights assigned to U.S. Government, 1994.
     9 *
     10 *  This material may be reproduced by or for the U.S. Government pursuant
     11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     12 *  notice must appear in all copies of this file and its derivatives.
     13 *
     14 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     15 *  Research Corporation (OAR) under contract to the European Space
     16 *  Agency (ESA).
     17 *
     18 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     19 *  European Space Agency.
    520 *
    621 *  $Id$
  • c/src/exec/score/cpu/sparc/cpu_asm.s

    r9700578 rc4808ca  
    44 *  in an specific CPU port of RTEMS.  These algorithms must be implemented
    55 *  in assembly language.
     6 *
     7 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     8 *  On-Line Applications Research Corporation (OAR).
     9 *  All rights assigned to U.S. Government, 1994.
     10 *
     11 *  This material may be reproduced by or for the U.S. Government pursuant
     12 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     13 *  notice must appear in all copies of this file and its derivatives.
     14 *
     15 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     16 *  Research Corporation (OAR) under contract to the European Space
     17 *  Agency (ESA).
     18 *
     19 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     20 *  European Space Agency.
    621 *
    722 *  $Id$
  • c/src/exec/score/cpu/sparc/erc32.h

    r9700578 rc4808ca  
    1818 *           + Memory Control Register
    1919 *           + Interrupt Control
     20 *
     21 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     22 *  On-Line Applications Research Corporation (OAR).
     23 *  All rights assigned to U.S. Government, 1994.
     24 *
     25 *  This material may be reproduced by or for the U.S. Government pursuant
     26 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     27 *  notice must appear in all copies of this file and its derivatives.
     28 *
     29 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     30 *  Research Corporation (OAR) under contract to the European Space
     31 *  Agency (ESA).
     32 *
     33 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     34 *  European Space Agency.
    2035 *
    2136 *  $Id$
  • c/src/exec/score/cpu/sparc/rtems.s

    r9700578 rc4808ca  
    33 *  This file contains the single entry point code for
    44 *  the SPARC port of RTEMS.
     5 *
     6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     7 *  On-Line Applications Research Corporation (OAR).
     8 *  All rights assigned to U.S. Government, 1994.
     9 *
     10 *  This material may be reproduced by or for the U.S. Government pursuant
     11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     12 *  notice must appear in all copies of this file and its derivatives.
     13 *
     14 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     15 *  Research Corporation (OAR) under contract to the European Space
     16 *  Agency (ESA).
     17 *
     18 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     19 *  European Space Agency.
    520 *
    621 *  $Id$
  • c/src/exec/score/cpu/sparc/sparc.h

    r9700578 rc4808ca  
    33 *  This include file contains information pertaining to the SPARC
    44 *  processor family.
     5 *
     6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     7 *  On-Line Applications Research Corporation (OAR).
     8 *  All rights assigned to U.S. Government, 1994.
     9 *
     10 *  This material may be reproduced by or for the U.S. Government pursuant
     11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     12 *  notice must appear in all copies of this file and its derivatives.
     13 *
     14 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     15 *  Research Corporation (OAR) under contract to the European Space
     16 *  Agency (ESA).
     17 *
     18 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     19 *  European Space Agency.
    520 *
    621 *  $Id$
  • c/src/exec/score/cpu/sparc/sparctypes.h

    r9700578 rc4808ca  
    33 *  This include file contains type definitions pertaining to the
    44 *  SPARC processor family.
     5 *
     6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     7 *  On-Line Applications Research Corporation (OAR).
     8 *  All rights assigned to U.S. Government, 1994.
     9 *
     10 *  This material may be reproduced by or for the U.S. Government pursuant
     11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     12 *  notice must appear in all copies of this file and its derivatives.
     13 *
     14 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     15 *  Research Corporation (OAR) under contract to the European Space
     16 *  Agency (ESA).
     17 *
     18 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     19 *  European Space Agency.
    520 *
    621 *  $Id$
  • c/src/lib/libcpu/sparc/include/erc32.h

    r9700578 rc4808ca  
    1818 *           + Memory Control Register
    1919 *           + Interrupt Control
     20 *
     21 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     22 *  On-Line Applications Research Corporation (OAR).
     23 *  All rights assigned to U.S. Government, 1994.
     24 *
     25 *  This material may be reproduced by or for the U.S. Government pursuant
     26 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     27 *  notice must appear in all copies of this file and its derivatives.
     28 *
     29 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     30 *  Research Corporation (OAR) under contract to the European Space
     31 *  Agency (ESA).
     32 *
     33 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     34 *  European Space Agency.
    2035 *
    2136 *  $Id$
  • c/src/tests/sptests/spsize/size.c

    r9700578 rc4808ca  
    355355uninitialized = 0;
    356356
     357#ifndef unix  /* make sure this is not a native compile */
     358
    357359#ifdef i386
    358360
     
    425427
    426428#endif
     429#endif /* !unix */
    427430
    428431initialized +=
     
    438441                (sizeof _TOD_Days_since_last_leap_year);
    439442
     443#ifndef unix /* make sure this is not native */
    440444#ifdef sparc
    441445
     
    443447
    444448#endif
     449#endif /* !unix */
    445450
    446451puts( "" );
  • cpukit/rtems/src/msg.c

    r9700578 rc4808ca  
    110110 *  Output parameters:
    111111 *    id                - queue id
    112  *    RTEMS_SUCCESSFUL - if successful
     112 *    RTEMS_SUCCESSFUL  - if successful
    113113 *    error code        - if unsuccessful
    114114 */
  • cpukit/rtems/src/region.c

    r9700578 rc4808ca  
    315315  void                    *the_segment;
    316316
     317  *segment = NULL;
     318
    317319  if ( size == 0 )
    318320    return RTEMS_INVALID_SIZE;
  • cpukit/sapi/include/rtems/io.h

    r9700578 rc4808ca  
    116116
    117117rtems_status_code rtems_io_register_name(
    118     char *device_name,
    119     rtems_device_major_number major,
    120     rtems_device_minor_number minor
     118    char                      *device_name,
     119    rtems_device_major_number  major,
     120    rtems_device_minor_number  minor
    121121);
    122122
     
    131131
    132132rtems_status_code rtems_io_lookup_name(
    133     const char *pathname,
    134     rtems_driver_name_t **rnp
     133    const char           *name,
     134    rtems_driver_name_t **device_info
    135135);
    136136
     
    148148  rtems_device_major_number  major,
    149149  rtems_device_minor_number  minor,
    150   void             *argument
     150  void                      *argument
    151151);
    152152
     
    163163  rtems_device_major_number  major,
    164164  rtems_device_minor_number  minor,
    165   void             *argument
     165  void                      *argument
    166166);
    167167
     
    178178  rtems_device_major_number  major,
    179179  rtems_device_minor_number  minor,
    180   void             *argument
     180  void                      *argument
    181181);
    182182
     
    193193  rtems_device_major_number  major,
    194194  rtems_device_minor_number  minor,
    195   void             *argument
     195  void                      *argument
    196196);
    197197
     
    208208  rtems_device_major_number  major,
    209209  rtems_device_minor_number  minor,
    210   void             *argument
     210  void                      *argument
    211211);
    212212
     
    223223  rtems_device_major_number  major,
    224224  rtems_device_minor_number  minor,
    225   void             *argument
     225  void                      *argument
    226226);
    227227
  • cpukit/sapi/src/io.c

    r9700578 rc4808ca  
    4747 *
    4848 *  Input Paramters:
     49 *    device_name - pointer to name string to associate with device
     50 *    major       - device major number to receive name
     51 *    minor       - device minor number to receive name
    4952 *
    5053 *  Output Parameters:
     54 *    RTEMS_SUCCESSFUL - if successful
     55 *    error code       - if unsuccessful
    5156 */
    5257
     
    9196 *
    9297 *  Input Paramters:
     98 *    name - name to lookup the associated device
    9399 *
    94100 *  Output Parameters:
     101 *    device_info      - device associate with name
     102 *    RTEMS_SUCCESSFUL - if successful
     103 *    error code       - if unsuccessful
    95104 */
    96105
    97106rtems_status_code rtems_io_lookup_name(
    98     const char           *pathname,
    99     rtems_driver_name_t **rnp
     107    const char           *name,
     108    rtems_driver_name_t **device_info
    100109)
    101110{
     
    107116         index++, np++ )
    108117        if (np->device_name)
    109             if (strncmp(np->device_name, pathname, np->device_name_length) == 0)
     118            if (strncmp(np->device_name, name, np->device_name_length) == 0)
    110119            {               
    111                 *rnp = np;
     120                *device_info = np;
    112121                return RTEMS_SUCCESSFUL;
    113122            }
    114123   
    115     *rnp = 0;
     124    *device_info = 0;
    116125    return RTEMS_UNSATISFIED;
    117126}
     
    166175  rtems_device_major_number  major,
    167176  rtems_device_minor_number  minor,
    168   void             *argument
     177  void                      *argument
    169178)
    170179{
     
    196205  rtems_device_major_number  major,
    197206  rtems_device_minor_number  minor,
    198   void             *argument
     207  void                      *argument
    199208)
    200209{
     
    226235  rtems_device_major_number  major,
    227236  rtems_device_minor_number  minor,
    228   void             *argument
     237  void                      *argument
    229238)
    230239{
     
    256265  rtems_device_major_number  major,
    257266  rtems_device_minor_number  minor,
    258   void             *argument
     267  void                      *argument
    259268)
    260269{
     
    286295  rtems_device_major_number  major,
    287296  rtems_device_minor_number  minor,
    288   void             *argument
     297  void                      *argument
    289298)
    290299{
  • cpukit/score/cpu/sparc/README

    r9700578 rc4808ca  
    109109from FP Task A to non-FP Task B and then to FP Task C.  In this scenario,
    110110the floating point state must technically be saved by a non-FP task.
    111 
    112 
    113 
    114 
    115 
    116 
    117 
    118 
  • cpukit/score/cpu/sparc/cpu.c

    r9700578 rc4808ca  
    11/*
    22 *  SPARC Dependent Source
     3 *
     4 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
     5 *  On-Line Applications Research Corporation (OAR).
     6 *  All rights assigned to U.S. Government, 1994.
     7 *
     8 *  This material may be reproduced by or for the U.S. Government pursuant
     9 *  to the copyright license under the clause at DFARS 252.227-7013.  This
     10 *  notice must appear in all copies of this file and its derivatives.
     11 *
     12 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
     13 *  Research Corporation (OAR) under contract to the European Space
     14 *  Agency (ESA).
     15 *
     16 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
     17 *  European Space Agency.
    318 *
    419 *  $Id$
  • testsuites/sptests/spsize/size.c

    r9700578 rc4808ca  
    355355uninitialized = 0;
    356356
     357#ifndef unix  /* make sure this is not a native compile */
     358
    357359#ifdef i386
    358360
     
    425427
    426428#endif
     429#endif /* !unix */
    427430
    428431initialized +=
     
    438441                (sizeof _TOD_Days_since_last_leap_year);
    439442
     443#ifndef unix /* make sure this is not native */
    440444#ifdef sparc
    441445
     
    443447
    444448#endif
     449#endif /* !unix */
    445450
    446451puts( "" );
Note: See TracChangeset for help on using the changeset viewer.