Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: elf/dl-fini.c

Issue 183973024: Remove __nacl_futex_fini (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sysdeps/nacl/futex_emulation.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Call the termination functions of loaded shared objects. 1 /* Call the termination functions of loaded shared objects.
2 Copyright (C) 1995,96,1998-2002,2004, 2005 Free Software Foundation, Inc. 2 Copyright (C) 1995,96,1998-2002,2004, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library. 3 This file is part of the GNU C Library.
4 4
5 The GNU C Library is free software; you can redistribute it and/or 5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 The GNU C Library is distributed in the hope that it will be useful, 10 The GNU C Library is distributed in the hope that it will be useful,
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 goto again; 280 goto again;
281 } 281 }
282 282
283 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_STATISTICS, 0)) 283 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_STATISTICS, 0))
284 _dl_debug_printf ("\nruntime linker statistics:\n" 284 _dl_debug_printf ("\nruntime linker statistics:\n"
285 " final number of relocations: %lu\n" 285 " final number of relocations: %lu\n"
286 "final number of relocations from cache: %lu\n", 286 "final number of relocations from cache: %lu\n",
287 GL(dl_num_relocations), 287 GL(dl_num_relocations),
288 GL(dl_num_cache_relocations)); 288 GL(dl_num_cache_relocations));
289 #endif 289 #endif
290
291 #ifdef __native_client__
292 __nacl_futex_fini ();
293 #endif
294 } 290 }
OLDNEW
« no previous file with comments | « no previous file | sysdeps/nacl/futex_emulation.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698