More cleanups. Lowercased all BIOS ROM filenames. Added ISA Cirrus-Logic to the video card table.

This commit is contained in:
waltje
2017-11-01 01:51:19 -05:00
parent bfe038ded9
commit 0565bf76af
31 changed files with 587 additions and 505 deletions

View File

@@ -86,6 +86,8 @@ poll_thread(void *arg)
/* Wait for a poll request. */
network_poll();
if (pcap == NULL) break;
/* Wait for the next packet to arrive. */
data = (uint8_t *)f_pcap_next((pcap_t *)pcap, &h);
if (data != NULL) {
@@ -115,7 +117,8 @@ poll_thread(void *arg)
}
/* No longer needed. */
thread_destroy_event(evt);
if (evt != NULL)
thread_destroy_event(evt);
pclog("PCAP: polling stopped.\n");
thread_set_event(poll_state);