| 894 | */ |
| 895 | |
| 896 | void _db_set_(const char *control) |
| 897 | { |
| 898 | CODE_STATE *cs; |
| 899 | uint old_fflags; |
| 900 | get_code_state_or_return; |
| 901 | |
| 902 | read_lock_stack(cs); |
| 903 | old_fflags=fflags(cs); |
| 904 | unlock_stack(cs); |
| 905 | |
| 906 | if (cs->stack == &init_settings) |
| 907 | PushState(cs); |
| 908 | |
| 909 | if (DbugParse(cs, control)) |
| 910 | { |
| 911 | read_lock_stack(cs); |
| 912 | FixTraceFlags(old_fflags, cs); |
| 913 | unlock_stack(cs); |
| 914 | } |
| 915 | } |
| 916 | |
| 917 | /* |
| 918 | * FUNCTION |
nothing calls this directly
no test coverage detected