Two more gdb runs in the link above.
Notice that gdb couldn't show me the values of local variables like origname, name or oflag - bad address. I rebuilt the test and this kept appearing. I just don't know why this happens and I think the gdb runs are not reliable at all.
** 1st run: errno = 22 after sem_open failure
Then I changed file semaphore_wrapper.hpp, function semaphore_open, line 68:
>> before:
case detail::DoOpen:
//No addition
break;
>>after:
case detail::DoOpen:
oflag = 0;
break;
and I could pass that exit point and go further.
** 2nd run:
Apparently the test passed. However, if I run the test out of gdb, it keeps failing exactly the same way:
«
====== BEGIN OUTPUT ======
create_then_open_then_open_or_create<33named_mutex_creation_test_wrapper>
Failed: false file: named_creation_template.hpp line : 34
boost::interprocess_exception::library_error
EXIT STATUS: 1
====== END OUTPUT ======
»
I was wondering that in case you are interested, you could connect to the hpux host via VPN...
Best regards,
Rui
2009/9/2 Ion Gaztañaga
<igaztanaga@gmail.com>
Rui Pedro Fernandes escribió:
In attachment I send you a snapshot of a gdb run.
I see that open is throwing and that seems strange. Could you debug a bit more deeper into Interprocess to the place where the exception is launched?