``mark_updates_required`` indicates that this function needs to be reanalyzed during the next update cycle :param enums.FunctionUpdateType update_type: (optional) Desired update type :rtype: None
(self, update_type: FunctionUpdateType = FunctionUpdateType.UserFunctionUpdate)
| 2527 | core.BNReanalyzeFunction(self.handle, update_type) |
| 2528 | |
| 2529 | def mark_updates_required(self, update_type: FunctionUpdateType = FunctionUpdateType.UserFunctionUpdate) -> None: |
| 2530 | """ |
| 2531 | ``mark_updates_required`` indicates that this function needs to be reanalyzed during the next update cycle |
| 2532 | |
| 2533 | :param enums.FunctionUpdateType update_type: (optional) Desired update type |
| 2534 | |
| 2535 | :rtype: None |
| 2536 | """ |
| 2537 | core.BNMarkUpdatesRequired(self.handle, update_type) |
| 2538 | |
| 2539 | def mark_caller_updates_required(self, update_type: FunctionUpdateType = FunctionUpdateType.UserFunctionUpdate) -> None: |
| 2540 | """ |
no outgoing calls
no test coverage detected