Changeset 2779 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- May 22, 2007 10:40:39 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21386
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r2569 r2779 1 /** $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * Intel 8254 programmable interval timer 3 * Intel 8254 Programmable Interval Timer (PIT). 5 4 */ 6 5 … … 99 98 int64_t next_transition_time; 100 99 int32_t irq; 101 uint32_t padding; 100 /** Number of release log entries. Used to prevent floading. */ 101 uint32_t cRelLogEntries; 102 102 103 103 uint32_t count; /* can be 65536 */ … … 299 299 s->count = val; 300 300 pit_irq_timer_update(s, s->count_load_time); 301 302 /* log the new rate if it's high enough. */ 303 if ( ( s->mode == 2 304 || s->mode == 3) 305 && s->count < 0x10000 306 && s->cRelLogEntries++ < 32) 307 LogRel(("PIT: mode=%d count=%#x - %d.%02d Hz\n", s->mode, s->count, 308 PIT_FREQ / s->count, (PIT_FREQ * 100 / s->count) % 100)); 301 309 } 302 310 … … 815 823 s->bcd = 0; 816 824 #endif 825 s->cRelLogEntries = 0; 817 826 s->mode = 3; 818 827 s->gate = (i != 2); -
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.