您好我最近发现代码中有一些特殊的注释,但它不是 doxygen 风格的,谁能告诉我什么工具可以提取这种注释?
/*
@doc INTERNAL
@func ULONG | SerialDispatchThread | Main serial event dispatch thread code.
* This is the reading and dispatching thread. It gets the
* event associated with the logical interrupt dwIntID and calls
* hardware specific routines to determine whether it's a receive event
* or a transmit event. If it's a transmit event, it calls the HW tx handler.
* If it's a receive event, it calls for the number of characters and calls
* atomic GetByte() to extract characters and put them into the drivers
* buffer represented by pSerialHead->pTargetBuffer, managing waiting
* for events and checking to see if those signals correspond to reading.
* It relies on NK masking the interrupts while it does it's thing, calling
* InterruptDone() to unmask them for each of the above cases.
*
* Not exported to users.
*
@rdesc This thread technically returns a status, but in practice, doesn't return
* while the device is open.
*/
我在这里找到了下载链接,如果有人需要这个:)