-
when i use openh323 to decode h323 packet, if i run all decode threads on the first processor, it's ok for run a week long. but if it use SetThreadAffinityMask to put each decode thread on different processor, it break after several minute with reporter "access violation(0x0000005), ". and the break point is in ptlib.dll each time.
BOOL PAbstractArray::SetSize(PINDEX newSize) { PINDEX...
2009-10-16 10:15:50 UTC by dewfall
-
when i use openh323 to decode h323 packet, if i run all decode threads on the first processor, it's ok for run a week long. but if it use SetThreadAffinityMask to put each decode thread on different processor, it break after several minute with reporter "access violation(0x0000005), ". and the break point is in ptlib.dll each time.
BOOL PAbstractArray::SetSize(PINDEX newSize) { PINDEX...
2009-10-16 10:12:30 UTC by nobody
-
when i use openh323 to decode h323 packet, if i run all decode threads on the first processor, it's ok for run a week long. but if it use SetThreadAffinityMask to put each decode thread on different processor, it break after several minute with reporter "access violation(0x0000005), ". and the break point is in ptlib.dll each time.
BOOL PAbstractArray::SetSize(PINDEX newSize)
{...
2009-10-12 10:45:40 UTC by dewfall
-
If so, can you update the link at http://www.opalvoip.org/pmwiki/pmwiki.php?n=Main.FAQ#Q4_16?
Thanks.
2009-09-25 05:11:57 UTC by hawklu
-
it's unmaintained. Instead use https://sourceforge.net/tracker/?func=browse&group_id=204472&atid=989748.
2009-05-20 04:41:00 UTC by watha
-
src/ptlib/unix/config.cxx has:
#ifdef P_MACOSX
#define environ (NULL)
#endif
which is also needed for Solaris.
2009-05-19 06:03:19 UTC by watha
-
make/unix.mak has:
ifneq ($(OSTYPE),Darwin)
ifeq ($(OSTYPE),solaris)
STDCCFLAGS += -xO3
else
STDCCFLAGS += -Os
endif
else
STDCCFLAGS += -O2
endif
which sets the -xO3 for solaris, but this should only be set for Sun Studio, ie when USE_GCC=no.
2009-05-19 04:26:18 UTC by watha
-
rjongbloed committed patchset 3890 of module openh323 to the OpenH323 CVS repository, changing 3 files.
2009-03-27 01:30:45 UTC by rjongbloed
-
I retried ekiga with ptlib 2.6.1 and opal 3.6.1 : no crash on exit.
2009-03-25 20:08:56 UTC by jpuydt
-
(1) PCREATE_PLUGIN is a macro to create a plugin. Ok.
(2) It uses the macro PCREATE_PLUGIN_REGISTERER, which is a macro to create a
plugin registerer. Ok.
(3) This last macro creates a static instance of a
PDevicePluginFactory::Worker... which is specific to *device*
plugins. Not Ok!
This used to be :
http://bugzilla.gnome.org/show_bug.cgi?id=365068
which I'll now close as...
2009-03-24 05:49:38 UTC by jpuydt