diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 17:58:40 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 17:58:40 +0000 |
commit | 2f5d30d928ca07598d5f3fbcda66c21843c587ea (patch) | |
tree | 1e440c93b0cf9b6ab0028a87f03704e2286e4b61 /gcc/gthr-posix.h | |
parent | 88b05e081178d1e56362a58107a1449267564c60 (diff) | |
download | gcc-2f5d30d928ca07598d5f3fbcda66c21843c587ea.tar.gz |
* bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
* diagnostic (vbuild_message_string, build_message_string,
build_location_prefix, output_get_prefix, init_output_buffer,
output_notice, vline_wrapper_message_with_location,
v_message_with_decl, default_print_error_function): De-constify.
(set_real_maximum_length): Prototype.
* diagnostic.h (struct output_buffer, init_output_buffer,
output_get_prefix, output_set_prefix): De-constify.
* function.c (init_function_start): Constify.
* gensupport.c (remove_constraints, process_rtx): Prototype.
* gthr-posix.h: Indent uses of #pragma.
* objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
Prototype.
* predict.c (find_expected_value): Delete prototype.
(expected_value_to_br_prob): Initialize variable `ev_reg'.
* sbitmap.h (debug_sbitmap): Prototype.
* ssa.c (compute_coalesced_reg_partition): Prototype.
* stor-layout.c (debug_rli): Prototype.
* tree.h (round_down): Prototype.
(init_function_start): Constify.
ch:
* ch-tree.h (init_function_start): Constify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33675 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gthr-posix.h')
-rw-r--r-- | gcc/gthr-posix.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/gthr-posix.h b/gcc/gthr-posix.h index f420e5f8be5..1b765d2359a 100644 --- a/gcc/gthr-posix.h +++ b/gcc/gthr-posix.h @@ -45,16 +45,16 @@ typedef pthread_mutex_t __gthread_mutex_t; #if SUPPORTS_WEAK && GTHREAD_USE_WEAK -#pragma weak pthread_once -#pragma weak pthread_key_create -#pragma weak pthread_key_delete -#pragma weak pthread_getspecific -#pragma weak pthread_setspecific -#pragma weak pthread_create - -#pragma weak pthread_mutex_lock -#pragma weak pthread_mutex_trylock -#pragma weak pthread_mutex_unlock + #pragma weak pthread_once + #pragma weak pthread_key_create + #pragma weak pthread_key_delete + #pragma weak pthread_getspecific + #pragma weak pthread_setspecific + #pragma weak pthread_create + + #pragma weak pthread_mutex_lock + #pragma weak pthread_mutex_trylock + #pragma weak pthread_mutex_unlock static void *__gthread_active_ptr = &pthread_create; |