Changeset c64e4ed4 in rtems for c/src/exec/libcsupport/include
- Timestamp:
- 01/15/96 21:50:28 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a625ccd
- Parents:
- 5c491aef
- Location:
- c/src/exec/libcsupport/include/rtems
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/include/rtems/assoc.h
r5c491aef rc64e4ed4 1 1 /* 2 * @(#)assoc.h 1. 2 - 95/06/282 * @(#)assoc.h 1.4 - 95/10/25 3 3 * 4 4 * … … 14 14 15 15 typedef struct { 16 c har*name;16 const char *name; 17 17 unsigned32 local_value; 18 18 unsigned32 remote_value; … … 25 25 #define RTEMS_ASSOC_DEFAULT_NAME "(default)" 26 26 27 rtems_assoc_t *rtems_assoc_ptr_by_name(rtems_assoc_t *,char *);28 rtems_assoc_t *rtems_assoc_ptr_by_value(rtems_assoc_t *, unsigned32);29 rtems_assoc_t *rtems_assoc_ptr_by_remote(rtems_assoc_t *, unsigned32);27 const rtems_assoc_t *rtems_assoc_ptr_by_name(const rtems_assoc_t *, const char *); 28 const rtems_assoc_t *rtems_assoc_ptr_by_value(const rtems_assoc_t *, unsigned32); 29 const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, unsigned32); 30 30 31 unsigned32 rtems_assoc_remote_by_local( rtems_assoc_t *, unsigned32);32 unsigned32 rtems_assoc_local_by_remote( rtems_assoc_t *, unsigned32);33 unsigned32 rtems_assoc_remote_by_name( rtems_assoc_t *,char *);34 unsigned32 rtems_assoc_local_by_name( rtems_assoc_t *,char *);35 c har *rtems_assoc_name_by_local(rtems_assoc_t *, unsigned32);36 c har *rtems_assoc_name_by_remote(rtems_assoc_t *, unsigned32);31 unsigned32 rtems_assoc_remote_by_local(const rtems_assoc_t *, unsigned32); 32 unsigned32 rtems_assoc_local_by_remote(const rtems_assoc_t *, unsigned32); 33 unsigned32 rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *); 34 unsigned32 rtems_assoc_local_by_name(const rtems_assoc_t *, const char *); 35 const char *rtems_assoc_name_by_local(const rtems_assoc_t *, unsigned32); 36 const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, unsigned32); 37 37 38 unsigned32 rtems_assoc_remote_by_local_bitfield( rtems_assoc_t *, unsigned32);39 char *rtems_assoc_name_by_local_bitfield(rtems_assoc_t *, unsigned32, char *);40 char *rtems_assoc_name_by_remote_bitfield(rtems_assoc_t *, unsigned32, char *);41 unsigned32 rtems_assoc_local_by_remote_bitfield( rtems_assoc_t *ap, unsigned32);38 unsigned32 rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, unsigned32); 39 char *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, unsigned32, char *); 40 char *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, unsigned32, char *); 41 unsigned32 rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, unsigned32); 42 42 43 43 -
c/src/exec/libcsupport/include/rtems/error.h
r5c491aef rc64e4ed4 1 1 2 /* 2 * @(#)error.h 1. 1 - 95/08/023 * @(#)error.h 1.3 - 95/10/25 3 4 * 4 5 * … … 7 8 * $Id$ 8 9 */ 10 11 #ifndef __RTEMS_ERROR_h 12 #define __RTEMS_ERROR_h 9 13 10 14 /* … … 19 23 RTEMS_ERROR_PANIC) /* all */ 20 24 21 c har *rtems_status_text(rtems_status_code);22 int rtems_error(int error_code, c har *printf_format, ...);23 void rtems_panic(c har *printf_format, ...);25 const char *rtems_status_text(rtems_status_code); 26 int rtems_error(int error_code, const char *printf_format, ...); 27 void rtems_panic(const char *printf_format, ...); 24 28 25 29 extern int rtems_panic_in_progress; 26 30 31 #endif 32 /* end of include file */ -
c/src/exec/libcsupport/include/rtems/libcsupport.h
r5c491aef rc64e4ed4 30 30 ); 31 31 32 extern void malloc_dump(void); 32 33 extern void libc_init(int reentrant); 34 extern int host_errno(void); 35 extern void fix_syscall_errno(void); 33 36 34 37 #ifdef __cplusplus … … 36 39 #endif 37 40 38 extern int host_errno(void);39 extern void fix_syscall_errno(void);40 41 41 #endif 42 42 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.