Custom Query (45 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 45)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#40 fixed Todo: implement the keyboard capture code for Qt frontend Valery V. Sedletski
Description

The old VBox port from year 2008 contains the code for capturing the keyboard via a keyboard hook DLL. It intercept all keyboard input including special keys and modifiers, hotkeys etc. Here I attached the patch for a Makefile to build a VBoxHlp.dll -- a helper DLL which contains a keyboard hook. The work remained is to refactor the keyboard code to different source files and classes. This is needed because the source code structure is changed in the upstream. Without this code, the Qt frontend may block PM on waiting the input events. It can be used though, if start the frontend like this:

VirtualBox.exe --startvm winxp

Then the selector window will be not running and no communication between them and the VM window. Also, the user experience is even better if you install the VBox additions and use mouse integration (see #29).

#41 fixed Async completion API emulation for OS/2 Valery V. Sedletski
Description

Some parts of VBox code (like src/VBox/Devices/Storage/DrvVD.cpp)require the AIO API, either, win32-like or posix-like. This API makes possible asynchronous I/O requests put in queue, without immediately blocking and getting status. Without these API's, SATA/SCSI/SAS won't work. We have no such API's on OS/2, so we need to emulate them somehow. For UNIX/Linux, there exists libAIO -- maybe, we could take this as a base.

#42 worksforme Can't compile, pthread error during configure dickk
Description

Hi, I'm getting this pthread error when I try to compile, Hopefully you can figure out what my problem is from the info following below.

[E:\5.0.6Netlabs]ash sh: can't access tty; job control turned off # export WATCOM=E:/WATCOM # export PATH_SDK_LIBSDL=E:/Tools/os2.x86/libsdl/SDL # # ./configure --with-ow-dir=$WATCOM --enable-vnc --disable-docs Checking for environment: Determined build machine: os2.x86, target machine: os2 .x86, OK. Checking for kBuild: found, OK. grep: Invalid back reference Checking for gcc: found version 4.9.2, OK. Checking for Open Watcom: found version 1.9, OK. Checking for iasl: found version 20131115, OK. Checking for xslt: found, OK. Checking for mkisofs: found mkisofs 2.01.01a59 (i386-pc-os2_emx) Copyright (C) 1 993-1997 Eric Youngdale (C) 1997-2009 J÷rg Schilling, OK. Checking for pthread:

pthread not found at -lpthread or pthread headers not found Check the file E:/5.0.6Netlabs/configure.log for detailed error information.

Check E:/5.0.6Netlabs/configure.log for details #

And here's the Configure Log

# Log file generated by # # './configure --with-ow-dir=E:/WATCOM --enable-vnc --disable-docs' #

* Checking environment * Determined build machine: os2.x86, target machine: os2.x86

* Checking kBuild * found

* Checking gcc * found version 4.9.2

* Checking Open Watcom * found version 1.9

* Checking iasl * found version 20131115

* Checking xslt * found

* Checking mkisofs * found mkisofs 2.01.01a59 (i386-pc-os2_emx) Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2009 J÷rg Schilling

* Checking pthread * compiling the following source file: #include <cstdio> #include <pthread.h> extern "C" int main(void) {

pthread_mutex_t mutex; if (pthread_mutex_init(&mutex, NULL)) {

printf("pthread_mutex_init() failed\n"); return 1;

} if (pthread_mutex_lock(&mutex)) {

printf("pthread_mutex_lock() failed\n"); return 1;

} if (pthread_mutex_unlock(&mutex)) {

printf("pthread_mutex_unlock() failed\n"); return 1;

} printf("found, OK.\n");

} using the following command line: g++ -Zomf -g -O -Wall -o E:/5.0.6Netlabs/.tmp_out E:/5.0.6Netlabs/.tmp_src.cc "-lpthread" ilink.exe: No such file or directory

Something is screwed up, I don't think ./configure needs ilink.exe! Have I left something out? I preformed the entire Development Setup as specified using YUM (pthread & pthread.devel included).

Here's the portion of configure that looks like possibly is causing the problem?

YASM="yasm" IASL="iasl" XSLTPROC="xsltproc" GENISOIMAGE="genisoimage" MKISOFS="mkisofs" INCCRYPTO="" LIBCRYPTO="-lssl -lcrypto" LIBPTHREAD="-lpthread" LIBCAP="-lcap" GSOAP=""

Also, I don't understand the “grep: invalid back reference “ statement in the Start-up script, could this be causing my problem?

Thanks for any ideas dickk

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Note: See TracQuery for help on using queries.