On Mon, Apr 7, 2008 at 9:53 PM, Brad <[EMAIL PROTECTED]> wrote:
> Here is an update to QEMU 0.9.1.
>
> ...

Works well enough with XPSP2 and openbsd-current as guests on i386.

i'm now getting "kqemu: the kqemu instance was lost" in dmesg when
qemu exits; that comes from kqemu-openbsd.c

static int
kqemuclose(dev_t dev, int flag, int devtype, struct proc* p)
{
        struct kqemu_instance *ks = p->p_emuldata;
        if(!ks || ks->magic != QEMU_MAGIC){
                printf("kqemu: the kqemu instance was lost\n");
                return EIO;
        }
        if(ks->state) kqemu_delete(ks->state);
        free(ks, M_EMULDATA);
        p->p_emuldata = 0;
        return 0;
}

something tells me that's not a good sign.

-- 
GDB has a 'break' feature; why doesn't it have 'fix' too?

Reply via email to