From: Brad Fitzpatrick Date: Thu, 12 Feb 2015 07:20:15 +0000 (-0800) Subject: runtime: remove obsolete SELinux execmem comment X-Git-Tag: go1.5beta1~2039 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cdc2b0568feac1867377dddccf6eafa45cd27352;p=gostls13.git runtime: remove obsolete SELinux execmem comment We don't have executable memory anymore. Change-Id: I9835f03a7bcd97d809841ecbed8718b3048bfb32 Reviewed-on: https://go-review.googlesource.com/4681 Reviewed-by: Dmitry Vyukov Reviewed-by: Dave Cheney --- diff --git a/src/runtime/mem_linux.go b/src/runtime/mem_linux.go index aa99b762bf..920fbcf6d6 100644 --- a/src/runtime/mem_linux.go +++ b/src/runtime/mem_linux.go @@ -54,7 +54,6 @@ func sysAlloc(n uintptr, stat *uint64) unsafe.Pointer { if uintptr(p) < 4096 { if uintptr(p) == _EACCES { print("runtime: mmap: access denied\n") - print("if you're running SELinux, enable execmem for this process.\n") exit(2) } if uintptr(p) == _EAGAIN {