'!' command, #shell */
| 5679 | |
| 5680 | /* '!' command, #shell */ |
| 5681 | staticfn int |
| 5682 | dosh_core(void) |
| 5683 | { |
| 5684 | #ifdef SHELL |
| 5685 | time_t now = getnow(); |
| 5686 | |
| 5687 | urealtime.realtime += timet_delta(now, urealtime.start_timing); |
| 5688 | urealtime.start_timing = now; /* (see dosuspend_core) */ |
| 5689 | /* access restrictions, if any, are handled in port code */ |
| 5690 | dosh(); |
| 5691 | urealtime.start_timing = getnow(); |
| 5692 | #else |
| 5693 | Norep(cmdnotavail, "#shell"); |
| 5694 | #endif |
| 5695 | return ECMD_OK; |
| 5696 | } |
| 5697 | |
| 5698 | staticfn int |
| 5699 | dummyfunction(void) |
nothing calls this directly
no test coverage detected