Changeset c13e8dc8 for src/libcfa/interpose.c
- Timestamp:
- Dec 5, 2017, 2:35:03 PM (8 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- f9feab8
- Parents:
- 9c35431 (diff), 65197c2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/interpose.c
r9c35431 rc13e8dc8 24 24 } 25 25 26 #include " libhdr/libdebug.h"27 #include " libhdr/libtools.h"26 #include "bits/debug.h" 27 #include "bits/defs.h" 28 28 #include "startup.h" 29 29 … … 69 69 __typeof__( exit ) libc_exit __attribute__(( noreturn )); 70 70 __typeof__( abort ) libc_abort __attribute__(( noreturn )); 71 72 // #define INIT_REALRTN( x, ver ) libc_##x = (__typeof__(libc_##x))interpose_symbol( #x, ver )73 71 74 72 forall(dtype T) … … 127 125 va_end( args ); 128 126 129 __ lib_debug_write( abort_text, len );130 __ lib_debug_write( "\n", 1 );127 __cfaabi_dbg_bits_write( abort_text, len ); 128 __cfaabi_dbg_bits_write( "\n", 1 ); 131 129 } 132 130 133 131 len = snprintf( abort_text, abort_text_size, "Cforall Runtime error (UNIX pid:%ld)\n", (long int)getpid() ); // use UNIX pid (versus getPid) 134 __ lib_debug_write( abort_text, len );132 __cfaabi_dbg_bits_write( abort_text, len ); 135 133 136 134
Note:
See TracChangeset
for help on using the changeset viewer.