* @brief Prints a line of dashes for visual separation * * @param[in] len Number of dashes to print */
| 1673 | * @param[in] len Number of dashes to print |
| 1674 | */ |
| 1675 | static void object_split(int len) |
| 1676 | { |
| 1677 | while (len--) |
| 1678 | { |
| 1679 | rt_kprintf("-"); |
| 1680 | } |
| 1681 | } |
| 1682 | |
| 1683 | /** |
| 1684 | * @brief Prints detailed information about a thread |
no test coverage detected