- Export the function added in r265456 rather than the non-existent

_rtld_debug_postinit(). [1]
- Use __compiler_membar() instead of inline asm in _r_debug_state() and
  _r_debug_postinit(). [2]

Pointy hat to:	markj [1]
Reported by:	attilio [2]
Discussed with:	kib
X-MFC-With:	r265456
This commit is contained in:
Mark Johnston 2014-05-07 17:21:22 +00:00
parent 665484d8f0
commit 7a61fc5a8e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265578
2 changed files with 3 additions and 3 deletions

View File

@ -30,5 +30,5 @@ FBSDprivate_1.0 {
_rtld_atfork_post;
_rtld_addr_phdr;
_rtld_get_stack_prot;
_rtld_debug_postinit;
_r_debug_postinit;
};

View File

@ -3551,7 +3551,7 @@ r_debug_state(struct r_debug* rd, struct link_map *m)
* even when marked __noinline. However, gdb depends on those
* calls being made.
*/
__asm __volatile("" : : : "memory");
__compiler_membar();
}
/*
@ -3564,7 +3564,7 @@ _r_debug_postinit(struct link_map *m)
{
/* See r_debug_state(). */
__asm __volatile("" : : : "memory");
__compiler_membar();
}
/*