Gedare Bloom started a new discussion on cpukit/libcsupport/src/getgrent.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1250#note_150558

 > +};
 >  
 > -static pthread_once_t grp_once = PTHREAD_ONCE_INIT;
 > +typedef enum {
 > +  GROUP_LOOKUP_ALL,
 > +  GROUP_LOOKUP_NAME,
 > +  GROUP_LOOKUP_GID
 > +} group_lookup_type;
 >  
 > -static pthread_key_t grp_key;
 > +union group_key {
 > +  const char *name;
 > +  gid_t gid;
 > +};
 > +void setgrent(void);
 > +void endgrent(void);

these should come in from a header file

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1250#note_150558
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to