mirror of
https://github.com/open-simh/simh.git
synced 2026-01-13 23:37:13 +00:00
ETHER: include threading vs polling in the eth_capabilities() information.
This commit is contained in:
parent
760ce434f6
commit
a8e93d2998
@ -969,7 +969,12 @@ static int _eth_get_system_id (char *buf, size_t buf_size)
|
||||
|
||||
const char *eth_capabilities(void)
|
||||
{
|
||||
return "Ethernet Packet transports"
|
||||
#if defined (USE_READER_THREAD)
|
||||
return "Threaded "
|
||||
#else
|
||||
return "Polled "
|
||||
#endif
|
||||
"Ethernet Packet transports"
|
||||
#if defined (HAVE_PCAP_NETWORK)
|
||||
":PCAP"
|
||||
#endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user