Cross Reference: 02-proc-cmdline.patch
xref
: /
solaris-userland
/
components
/
gnome
/
gnome-shell
/
patches
/
02-proc-cmdline.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
7204
N/A
Enable use of
/proc/self/cmdline
on Solaris as well as Linux, now that we have
7204
N/A
support for it via PSARC/2015/207, instead of falling through to no-op case in
7204
N/A
shell_global_reexec_self().
7204
N/A
7204
N/A
Need to submit upstream.
7204
N/A
7204
N/A
diff --git
a/src/shell-global.c
b/src/shell-global.c
7204
N/A
index
6dda352..a698f0e
100644
7204
N/A
---
a/src/shell-global.c
7204
N/A
+++
b/src/shell-global.c
7204
N/A
@@ -1244,7 +1244,7 @@ shell_global_reexec_self (ShellGlobal *global)
7204
N/A
GPtrArray *arr;
7204
N/A
gsize len;
7204
N/A
7204
N/A
-#if defined __linux__
7204
N/A
+#if defined __linux__ || defined __sun
7204
N/A
char *buf;
7204
N/A
char *buf_p;
7204
N/A
char *buf_end;