Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 549108 | Differences between
and this patch

Collapse All | Expand All

(-)a/libsandbox/trace.c (-1 / +1 lines)
Lines 32-38 pid_t trace_pid; Link Here
32
# error "unable to find struct for tracing regs"
32
# error "unable to find struct for tracing regs"
33
#endif
33
#endif
34
34
35
#ifdef HAVE_OPEN64
35
#if defined(HAVE_OPEN64) && !defined(open64)
36
# define sb_openat_pre_check sb_openat64_pre_check
36
# define sb_openat_pre_check sb_openat64_pre_check
37
#endif
37
#endif
38
38
(-)a/scripts/gen_symbol_header.awk (-1 / +1 lines)
Lines 17-23 BEGIN { Link Here
17
		# On x86, x86_64 and others, $8 is the symbol name, but on
17
		# On x86, x86_64 and others, $8 is the symbol name, but on
18
		# alpha, its $10, so rather use $NF, as it should be the
18
		# alpha, its $10, so rather use $NF, as it should be the
19
		# last field
19
		# last field
20
		if ($NF ~ sym_regex) {
20
		if (($5 != "WEAK") && ($NF ~ sym_regex)) {
21
			split($NF, symbol_array, /@|@@/);
21
			split($NF, symbol_array, /@|@@/);
22
22
23
			# Don't add local symbols of versioned libc's
23
			# Don't add local symbols of versioned libc's
(-)a/scripts/gen_symbol_version_map.awk (-1 / +1 lines)
Lines 14-20 BEGIN { Link Here
14
14
15
	# Only check FUNCtion symbols which are not LOCAL, or
15
	# Only check FUNCtion symbols which are not LOCAL, or
16
	# do not have DEFAULT visibility
16
	# do not have DEFAULT visibility
17
	if ($4 != "FUNC" || $5 == "LOCAL" || $6 != "DEFAULT")
17
	if ($4 != "FUNC" || $5 == "LOCAL")
18
		next;
18
		next;
19
19
20
	for (x in SYMBOLS) {
20
	for (x in SYMBOLS) {

Return to bug 549108