1
0
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:
Mark Pizzolato 2017-02-08 13:31:01 -08:00
parent 760ce434f6
commit a8e93d2998

View File

@ -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