support

Forum Replies Created

Viewing 15 posts - 7,546 through 7,560 (of 7,659 total)
  • Author
    Posts
  • in reply to: BazisLib STLPort exception handling disabled #1324
    support
    Keymaster

    Unfortunately, I don’t have much time to look into details right now. However, I don’t think that relying on undocumented _CxxThrowException(), that can be changed in future versions, is a good idea. Moreover, I don’t explicitly see whether your example is compatible with x64.
    I would suggest redefining __THROW_BAD_ALLOC using SEH. As SEH is already supported by WDK, that should not be a problem. We won’t get a full equivalent of C++ exceptions, however, this particular problem (handle npagednew() for STL containers) will be solved smoothly.

    in reply to: BazisLib STLPort exception handling disabled #1322
    support
    Keymaster

    If I remember correctly, a call to exit(), that is equivalent to KeBugCheck(). You need to patch STLPort to handle such cases correctly.

    in reply to: bazisLib for kernel-mode drivers? #1320
    support
    Keymaster

    Yes, BazisLib fully supports writing kernel-mode drivers and even has several examples of compact and efficient object-oriented drivers.
    The discussion about “only C” is caused by the fact that misuse of C features would cause one write more lines, but misuse of C++ features causes one source line generate much more binary code (e.g. use of implicit std::string constructor from a constant string, when not needed), that results performance drop not noticeable by developer directly. That’s why, rather than carefully design C++ programs and check the result in disassembler for some cases, many developers prefer using “old plain C”.

    in reply to: "New hardware found" for each ISO filename #1317
    support
    Keymaster

    This was originally done to make Device Manager display correct image names as device names. However, the overhead of “new device found” every time really seams unreasonable. It will be fixed in the next version.

    in reply to: Doesnt Do Anything #1292
    support
    Keymaster

    Please try this fix: http://wincdemu.sysprogs.org/wcdcleanup.exe
    Please inform me whether it solves your problem. If it does, I’ll fix the next version of WinCDEmu

    in reply to: 1394 debugging #1271
    support
    Keymaster

    Ok, does the COM-based or VM-based debugging work on your machine? Maybe, the problem global to VisualDDK and not related to 1394 directly? Additionally, maybe it is some kind of a problem with UAC? Does Visual Studio have the same access level, as WinDbg?

    in reply to: 1394 debugging #1269
    support
    Keymaster

    OK, is WinDbg closed when you are connecting from VisualDDK? Have you specified the path to the latest version of Debugging tools in VisualDDK settings? When you use WinDbg, did you specify “1934:channel=0” in command line, or did you use the dialog box?

    in reply to: Wallpaper and desktop icons gone! #1285
    support
    Keymaster

    Installing WinCDEmu has enabled the “testsigning” mode (http://msdn.microsoft.com/en-us/library/dd419910.aspx). Without this mode, Windows 7 cannot load unsigned drivers (signing is not free). You can read more about testsigning (including how to disable it) here: http://www.sysprogs.org/signing/

    in reply to: Error: Can’t connect to virtualbox target host #1265
    support
    Keymaster

    Please try debugging using WinDbg+VirtualKD (start VMMON.EXE or VMMON64.EXE, select your VM, select the correct OS instance, press “Run Debugger” from VMMON).
    If the WinDbg debugging fails as well, double-check your VM settings and VirtualKD installation.
    If WinDbg debugging works, but VisualDDK still fails, ensure that the correct VM name is specified and that you are not running WinDbg while connecting from VisualDDK.
    Anyway, feel free to post here after you try WinDbg.

    in reply to: WinCDEmu not in context menu anymore #1229
    support
    Keymaster

    Please send the DMP file to support (at) sysprogs.org

    in reply to: Cannot Mount Devices under Windows 7 Pro x86 #1278
    support
    Keymaster

    Ok, please gather all .dmp files from your WindowsMinidump directory, pack them into a ZIP file and send to support (at) sysprogs.org. This will help me to determine the reason of the problem and to fix it.

    in reply to: Error: Can’t connect to virtualbox target host #1263
    support
    Keymaster

    Ok, did you run the VMINSTALL.EXE on the VM? Did you select the “Windows [VirtualKD]” as the operating system to boot on the VM?

    in reply to: Error with Kernel-Mode Connections #1281
    support
    Keymaster

    Please try raw:// prefix, as described here:
    viewtopic.php?f=4&t=378

    in reply to: Changing target version of driver? #1258
    support
    Keymaster

    In the current version you need to create a new project for that (if you are using the BUILD system, you can change the command lines in project settings). In the future versions it will be possible to select multiple target OSes when creating the project.

    in reply to: 1394 debugging #1267
    support
    Keymaster

    Could you please try “Debug->Attach” method, as described in VisualDDK quickstart? (http://visualddk.sysprogs.org/quickstart).
    If “1394://” fails, try using “raw://” prefix, as described in the page above.
    If using “raw://” solves the problem, please post your complete connection string here, so I can fix the “1394://” implementation.

Viewing 15 posts - 7,546 through 7,560 (of 7,659 total)