Displaying 5 results from an estimated 5 matches for "memprotected".
Did you mean:
memprotect
2012 Apr 07
1
wine with Fedora 16... need help please
I`m having trouble running some games (JadeDynasty,War Of The Immortals) after I have installed them and I need to determine if this is the problem.
Is anyone famaliar with the following msg:
SELinux is preventing wine-preloader from mmap_zero access on the memprotect .
***** Plugin mmap_zero (53.1 confidence) suggests **************************
If you do not think wine-preloader should need
2014 Aug 21
1
Centos 7 lockup
A machine I set up to run OpenNMS stopped working last night - no
hardware alarm lights, but keyboard/monitor/network unresponsive.
After a reboot I see a large stack of messages like this in
/var/log/messages:
----
Aug 20 14:02:34 opennms-h-03 python: SELinux is preventing
/usr/sbin/monitor-get-edid-using-vbe from mmap
_zero access on the memprotect .
***** Plugin mmap_zero (53.1 confidence)
2010 Apr 13
1
Spurious TV load detection on GeForce 6150 (no TV connector)
Hello,
Since I've updated to F13 I keep getting blank screens at "cold" boot
with this card:
00:05.0 VGA compatible controller: nVidia Corporation C51PV [GeForce
6150] (rev a2)
When I say "cold" boot I mean the first couple of times I turn on my
computer in the morning. After a couple of reboots I get plymouth to
show up, and then X11. This never happened with F12.
After
2009 Jul 17
2
[LLVMdev] Stack Management in LLVM
...I'm not just looking to implement garbage collection that may have been done
already in a better way, I will be conducting research into stack handling
routines for multi-threaded programs. As such, I will need to have complete
control over the stack, including the ability to
* Add memprotected regions before and after stack pages, with the
intention to catch the interrupt/signal and modify the stack
* Hook before functions place data on stack, possibly moving the stack
pointer before data is placed
* Hook before functions return with explicit control over where the new
stack p...
2005 Oct 28
3
[LLVMdev] "Bound Methods" in LLVM Bytecode
Hello,
I have been thinking about efficient implementation of dynamically typed
languages in my spare time. Specifically, I'm working on a toy
implementation of a tiny piece of Python using LLVM as a native code
generating JIT. I've run into a bit of an issue, involving how Python
deals with method calls. I'm not sure how/if I can implement this in
LLVM. In Python, the following