哪种工具可以提取这种评论?

时间:2013-01-17 05:20:21

标签: c comments

您好我最近发现代码中有一些特殊注释,但它不是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.
 */       

如果有人需要,我找到了下载链接here:)

1 个答案:

答案 0 :(得分:5)

我认为它属于AutoDuck

检查工具的this manual(我找不到更多信息......)