Changeset 44857 in vbox for trunk/src/VBox
- Timestamp:
- Feb 27, 2013 10:50:06 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84006
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r44856 r44857 1940 1940 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); 1941 1941 1942 /* Initialize PCI part first. */ 1942 /* Initialize the instance data suffiencently for the destructor not to blow up. */ 1943 pThis->hEventMoreRxDescAvail = NIL_RTSEMEVENT; 1944 1945 /* Do our own locking. */ 1946 rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns)); 1947 AssertRCReturn(rc, rc); 1948 1949 /* Initialize PCI part. */ 1943 1950 pThis->VPCI.IBase.pfnQueryInterface = vnetQueryInterface; 1944 1951 rc = vpciConstruct(pDevIns, &pThis->VPCI, iInstance, … … 1950 1957 1951 1958 Log(("%s Constructing new instance\n", INSTANCE(pThis))); 1952 1953 pThis->hEventMoreRxDescAvail = NIL_RTSEMEVENT;1954 1959 1955 1960 /*
Note:
See TracChangeset
for help on using the changeset viewer.