| 2880 | } |
| 2881 | |
| 2882 | bool cmMakefile::IsFunctionBlocked(cmListFileFunction const& lff, |
| 2883 | cmExecutionStatus& status) |
| 2884 | { |
| 2885 | // if there are no blockers get out of here |
| 2886 | if (this->FunctionBlockers.empty()) { |
| 2887 | return false; |
| 2888 | } |
| 2889 | |
| 2890 | return this->FunctionBlockers.top()->IsFunctionBlocked(lff, status); |
| 2891 | } |
| 2892 | |
| 2893 | void cmMakefile::PushFunctionBlockerBarrier() |
| 2894 | { |