Displaying 5 results from an estimated 5 matches for "_calls".
Did you mean:
calls
2015 Mar 04
0
Failsafe AGI using AEL
...causes this script to skip running the primary AGI on and only run the failsafe AGI until the max calls or max seconds.
Once max calls or max seconds elapse the breaker is reset on the next call and everything goes back to normal.
GLOBAL VARIABLES
SM_NODE: system hostname
SM_AGI_BREAKER_MAX_CALLS: reset breaker after this many calls
SM_AGI_BREAKER_MAX_ELAPSED: reset breaker after this many seconds
SM_AGI_BREAKER_NOTIFY: e-mail address list
*/
macro sm_agi(agi,agi_failsafe) {
// extract script name from primary agi for the global breaker variable name
Set(LOCAL(breaker)=sm...
2010 Jun 14
0
[LLVMdev] Win32 COFF Support
...gs() << x)
+#define dbgerr(x) do { dbgout (__FILE__ << "(" << __LINE__ <<\
+ ") : " << x << '\n'); llvm_unreachable("unexpected error occured");\
+ } while (false)
+
+#define dbgout_call(x) DEBUG_WITH_TYPE(DEBUG_TYPE"_calls", dbgs() << \
+ __FUNCTION__ << " (" << x << ")\n")
+
+#define dbg_notimpl(x) dbgerr("not imlemented, " << __FUNCTION__ \
+ << " (" << x << ")")
I'm not a big fa...
2010 Jun 12
3
[LLVMdev] Win32 COFF Support
Here is a full patch including Nathan's COFF support, tests that pass
on Windows, and some changes to lit.
Obviously the COFF support and changes to lit should be separate
patches in the end.
http://codereview.appspot.com/1624043/show
- Michael Spencer
-------------- next part --------------
A non-text attachment was scrubbed...
Name: COFF-support.patch
Type: application/octet-stream
Size:
2010 Jun 14
2
[LLVMdev] Win32 COFF Support
...bgerr(x) do { dbgout (__FILE__ << "(" << __LINE__ <<\
> + ") : " << x << '\n'); llvm_unreachable("unexpected error
> occured");\
> + } while (false)
> +
> +#define dbgout_call(x) DEBUG_WITH_TYPE(DEBUG_TYPE"_calls", dbgs()
> << \
> + __FUNCTION__ << " (" << x << ")\n")
> +
> +#define dbg_notimpl(x) dbgerr("not imlemented, " << __FUNCTION__ \
> + << " (" << x << ")&q...
2010 Jun 14
0
[LLVMdev] Win32 COFF Support
...do { dbgout (__FILE__ << "(" << __LINE__ <<\
>> + ") : " << x << '\n'); llvm_unreachable("unexpected error occured");\
>> + } while (false)
>> +
>> +#define dbgout_call(x) DEBUG_WITH_TYPE(DEBUG_TYPE"_calls", dbgs() << \
>> + __FUNCTION__ << " (" << x << ")\n")
>> +
>> +#define dbg_notimpl(x) dbgerr("not imlemented, " << __FUNCTION__ \
>> + << " (" << x <<...