Changeset a148f56 in rtems


Ignore:
Timestamp:
01/04/00 14:00:38 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
36155ebb
Parents:
1dfc188e
Message:

Removed warnings.

Files:
4 edited

Legend:

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

    r1dfc188e ra148f56  
    4444  va_list                        arg;
    4545  mode_t                         mode;
    46   struct mq_attr                *attr;
     46  struct mq_attr                *attr = NULL;
    4747  int                            status;
    4848  Objects_Id                     the_mq_id;
     
    5252  _Thread_Disable_dispatch();
    5353
     54  /* XXX is attr used with out being initialized otherwise? */
    5455  if ( oflag & O_CREAT ) {
    5556    va_start(arg, oflag);
  • c/src/exec/posix/src/mqueueunlink.c

    r1dfc188e ra148f56  
    3838)
    3939{
    40   int  status;
     40  int                                   status;
    4141  register POSIX_Message_queue_Control *the_mq;
    42   Objects_Id                        the_mq_id;
    43   Objects_Locations                 location;
     42  Objects_Id                            the_mq_id;
    4443 
    4544  _Thread_Disable_dispatch();
  • cpukit/posix/src/mqueueopen.c

    r1dfc188e ra148f56  
    4444  va_list                        arg;
    4545  mode_t                         mode;
    46   struct mq_attr                *attr;
     46  struct mq_attr                *attr = NULL;
    4747  int                            status;
    4848  Objects_Id                     the_mq_id;
     
    5252  _Thread_Disable_dispatch();
    5353
     54  /* XXX is attr used with out being initialized otherwise? */
    5455  if ( oflag & O_CREAT ) {
    5556    va_start(arg, oflag);
  • cpukit/posix/src/mqueueunlink.c

    r1dfc188e ra148f56  
    3838)
    3939{
    40   int  status;
     40  int                                   status;
    4141  register POSIX_Message_queue_Control *the_mq;
    42   Objects_Id                        the_mq_id;
    43   Objects_Locations                 location;
     42  Objects_Id                            the_mq_id;
    4443 
    4544  _Thread_Disable_dispatch();
Note: See TracChangeset for help on using the changeset viewer.