| 1935 | } |
| 1936 | |
| 1937 | void postConsoleInput( RawData data ) |
| 1938 | { |
| 1939 | // Schedule this to happen at the next time event. |
| 1940 | ConsoleValue argv[2]; |
| 1941 | argv[0].setString("eval"); |
| 1942 | argv[1].setString(reinterpret_cast<const char*>(data.data)); |
| 1943 | |
| 1944 | Sim::postCurrentEvent(Sim::getRootGroup(), new SimConsoleEvent(2, argv, false)); |
| 1945 | } |
| 1946 | |
| 1947 | //------------------------------------------------------------------------------ |
| 1948 |
nothing calls this directly
no test coverage detected