Changes in libcfa/src/bits/debug.hfa [8e85344:16cc9f7]
- File:
-
- 1 edited
-
libcfa/src/bits/debug.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/debug.hfa
r8e85344 r16cc9f7 9 9 // Author : Thierry Delisle 10 10 // Created On : Mon Nov 28 12:27:26 2016 11 // Last Modified By : Andrew Beach12 // Last Modified On : Mon Apr 27 10:15:00 202013 // Update Count : 1 011 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 22 18:21:56 2022 13 // Update Count : 11 14 14 // 15 15 … … 46 46 extern void __cfaabi_bits_acquire(); 47 47 extern void __cfaabi_bits_release(); 48 extern void__cfaabi_bits_print_safe ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));49 extern void__cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));50 extern void__cfaabi_bits_print_vararg( int fd, const char fmt[], va_list arg );51 extern void__cfaabi_bits_print_buffer( int fd, char buffer[], int buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) ));48 extern int __cfaabi_bits_print_safe ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )); 49 extern int __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )); 50 extern int __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list arg ); 51 extern int __cfaabi_bits_print_buffer( int fd, char buffer[], int buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) )); 52 52 53 53 #if defined(__CFA_DEBUG_PRINT__) \
Note:
See TracChangeset
for help on using the changeset viewer.