Custom Query (45 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 45)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#46 fixed NetIf API support in Main Valery V. Sedletski
Description

ATM, we're missing the NetIf? API in Main component, to reconfigure network interfaces. BTW, this missing API may be responsible of a non-working network in current OS/2 VBox versions. (but I also see VBOX_WITH_HOSTNETIF_API parameter, which could be disabled, so, on the other side, it may work without this API too, maybe).

#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

#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.

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