search for: check_xyz

Displaying 4 results from an estimated 4 matches for "check_xyz".

Did you mean: check_xy
2012 Jun 21
0
[LLVMdev] Readnone/Readonly Function Attributes and Optimization
...in some cases, global state. > They do not modify a program's global state, but they do print output on > failures and can abort the program. I'm wondering if adding the > readnone/readonly attributes to these run-time checks is safe. Instead, how about having a readnone function check_xyz_passed that returns a boolean saying whether the check passed. Call check_xyz, examine the return value, and call the abort routine if it returned false. Ciao, Duncan.
2009 Feb 13
10
Nagios: Error: Service check command ... not defined anywhere!
Hello CentOS users, I have problems posting the question below to the Nagios mailing list (my subscription is not accepted for some reason). Has anybody of you already had this probably frequent problem with Nagios in CentOS? I can''t use check_squid from command-plugins.cfg (s. below) Thank you for any hints Alex ---------- Forwarded message ---------- To: nagios-users at
2012 Jun 20
3
[LLVMdev] Readnone/Readonly Function Attributes and Optimization
Dear All, Are functions marked as readnone or readonly in the LLVM IR allowed to generate output or to exhibit exceptional behavior (e.g., calling abort(), generating an MMU fault, etc.)? The SAFECode compiler has a set of run-time checks that pass or fail based solely on the input arguments and, in some cases, global state. They do not modify a program's global state, but they do print
2012 Jun 21
1
[LLVMdev] Readnone/Readonly Function Attributes and Optimization
...lobal state. >> They do not modify a program's global state, but they do print output on >> failures and can abort the program. I'm wondering if adding the >> readnone/readonly attributes to these run-time checks is safe. > Instead, how about having a readnone function check_xyz_passed that returns > a boolean saying whether the check passed. Call check_xyz, examine the return > value, and call the abort routine if it returned false. We can do that for load/store checks. GEP checks may be a little more tricky (at least for SAFECode); they either return the real...