| 22 | void gforSet(bool val) { gforStatus = val; } |
| 23 | |
| 24 | bool gforToggle() { |
| 25 | bool status = gforGet(); |
| 26 | status ^= 1U; |
| 27 | gforSet(status); |
| 28 | return status; |
| 29 | } |
| 30 | |
| 31 | array batchFunc(const array &lhs, const array &rhs, batchFunc_t func) { |
| 32 | if (gforGet()) { |