search for: arena

Displaying 20 results from an estimated 377 matches for "arena".

Did you mean: area
2009 Jul 07
0
rsync-3.0.6 regression test problems
...t; for the failures: HP-UX 11.11: --- 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< --- ============================================================ /soft/os/rsync/rsync-3.0.6/rsync-3.0.6/runtests.sh running in /scr/viz-hpux/koenig/rsync-3.0.6-1/ARENA/32 rsync_bin=/scr/viz-hpux/koenig/rsync-3.0.6-1/ARENA/32/rsync srcdir=/soft/os/rsync/rsync-3.0.6/rsync-3.0.6 TLS_ARGS= -L testuser=koenig os=HP-UX viz-hpux B.11.11 U 9000/785 2016192404 unlimited-user license preserve_scratch=no scratchbase=/scr/viz-hpux/koenig/rsync-3....
2007 Nov 02
0
build/test problems with rsync-3.0.0pre4
.../usr/include/acl.h /usr/include/acllib.h /usr/include/aclv.h ------------------------------------------------------------------------------- HP-UX 11.11/11.23 test failures: ----- chown log follows Testing for symlinks using 'test -h' Running: "/scr/viz-hpux/koenig/rsync-3.0.0pre4-1/ARENA/32/rsync --super -aHvv from/ to/" sending incremental file list created directory to delta-transmission disabled for local transfer or --whole-file ../ name1 rsync: failed to set permissions on "/net/viz-hpux/fs1/scr/viz-hpux/koenig/rsync-3.0.0pre4-1/ARENA/32/testtmp/chown/to/.name1.a145...
2004 Oct 28
5
How to help improving Wine?
...footprint result. The application works perfectly on Codeweavers Crossover Office 3.0.1 (trial). And I am ready to buy it (as they support the free Wine, I think.) But I would like to understand why it does not work on Wine! The included log finishes with this: [...] warn:heap:HEAP_ValidateInUseArena Heap 40360000: invalid in-use arena magic for 403bd120 warn:heap:HEAP_ValidateInUseArena Heap 40360000: invalid in-use arena magic for 403b46f0 warn:heap:HEAP_ValidateInUseArena Heap 40360000: invalid in-use arena magic for 403b6948 warn:heap:HEAP_ValidateInUseArena Heap 40360000: invalid in-use...
2003 Feb 26
0
[help] Can't Join Samba 2.2.3a to TNG+LDAP
...i inserted a trust relationshhip into LDAP just like the trusts for the W2K machines. When I perform the join: smbpasswd -j <tng_domain> -r <tng_server> -D 4 the error issued is the following (Essentially a NT_STATUS_ACCESS_DENIED): ---------------------------------------------------- arena:[root]# smbpasswd -j LABSCIENZEMFN -r LDAPS -D 4 added interface ip=157.27.241.10 bcast=157.27.241.255 nmask=255.255.255.0 resolve_lmhosts: Attempting lmhosts lookup for name LDAPS<0x20> getlmhostsent: lmhost entry: 127.0.0.1 localhost getlmhostsent: lmhost entry: 157.27.241.11 LDAPS Conn...
2009 Feb 16
0
Embedded OLE objects problem with Arena Simulation software
Hi, I'm having problems to install Arena Simulation 10.0, academic edition. I think there is no entry in AppDB about this software. I'm using Wine 1.1.14, which i compiled in a Debian Etch. The software uses Windows Installer 2.0, and before installing it does a check of required components: Windows Installer 2.0 MDAC 2.8 JET 4.0 SP3...
2011 Jun 22
1
glusterfs 3.2.1 processes in an endless loop?
Hello, I found a new issue with glusterfs 3.2.1 - im getting a glusterfs process for each mountpoint and they are consuming all of the CPU time. strace won't show a thing - so no system calls are made Mounting the same volumes on another server works fine. Has anyone seen such a thing? Oder any idea, what causes this and how to fix it? The logfiles don't show any information about
2011 Nov 19
1
Re: Arena Simulation problems in Wine 1.2.3
When I installed Arena 12 cpr 9 with a student license. I saw the error message RsiTPInfo030000.dll RSIXML06000.dll were missing. I installed on windows 7 to compare and had the same error. I tried re-installing/repair, without improvement. I extracted these two files from the data.cab file. Arena works fine now. I t...
2017 Apr 25
2
RFC: Improving the performance of ItaniumDemangle
...mprove the performance of lldb, I ran into a bottleneck with the demangler. This may be specific to my platform - Ubuntu 16.04, probably using libstdc++, not libc++. It makes extensive use of std::string and std::vector, and I see memory allocation at the top. I prototyped a version that uses an arena-style memory allocator (you can allocate, but you can't ever free). It is approximately 14+% faster. I think I can further optimize it by making repeated appends zero-copy (for the string being appended too). The code right now is a little ugly, because it uses a thread local variable to pas...
2017 Apr 25
4
RFC: Improving the performance of ItaniumDemangle
...ce of lldb, I ran into a > bottleneck with the demangler. This may be specific to my platform - > Ubuntu 16.04, probably using libstdc++, not libc++. It makes extensive use > of std::string and std::vector, and I see memory allocation at the top. I > prototyped a version that uses an arena-style memory allocator (you can > allocate, but you can't ever free). It is approximately 14+% faster. I > think I can further optimize it by making repeated appends zero-copy (for > the string being appended too). > > > > The code right now is a little ugly, because it u...
2011 Aug 23
1
Arena Simulation problems in Wine 1.2.3
Hey everyone, I'm running a fresh installation of Wine 1.2.3 under Ubuntu 11.04. I've successfully installed Arena Simulation (version 12.0, under a student license), software by Rockwell Automation. However, when I try to run the program, this comes up (click for full size): [Image: http://img716.imageshack.us/img716/1651/screenshot4kz.th.png ] (http://imageshack.us/photo/my-images/716/screenshot4kz.png/) Th...
2017 Apr 25
5
RFC: Improving the performance of ItaniumDemangle
...t purestorage.com> > wrote: > > > > well, top-of-branch lldb uses this code, that's how I found it. Do you > mean libc++'s demangler? > > Thanks for explaining, this is the first time I'm looking at the demangler > situation. It looks like libcxxabi has an arena-based demangler, and that > the one in llvm is different. > > I'm confused by this because the comment in llvm says that libcxxabi is > supposed to reuse the llvm demangler. This doesn't seem to be happening, > right? > This seems correct. libcxxabi demangler [1] is diffe...
2005 Apr 26
3
HELP!! Only some machines connect to samba
...i got 33 machines, all with Windows 2000. The thing is that "some of them connect" others don't, all with the exact same configuration. Same thing happen with users, some connect some don't. I have been looking around for a solution and found nothing. Please HELP!!! -- C?roly E. Arenas
2017 Apr 30
1
RFC: Improving the performance of ItaniumDemangle
...t; wrote: >> > >> > well, top-of-branch lldb uses this code, that's how I found it. Do you >> mean libc++'s demangler? >> >> Thanks for explaining, this is the first time I'm looking at the >> demangler situation. It looks like libcxxabi has an arena-based demangler, >> and that the one in llvm is different. >> >> I'm confused by this because the comment in llvm says that libcxxabi is >> supposed to reuse the llvm demangler. This doesn't seem to be happening, >> right? >> > > This seems correct....
2008 Jul 16
6
centralized patch management
Hello, I have been asked to come up with a strategy for centralized patch management of our linux servers. Today, this is only centos and rhel. What is everyone else doing in this arena? Thanks!
2002 Feb 21
2
How do I launch with Start/Run ??
Hi List I am a newbie to Wine, but managed to download it and have run 123free.exe and dbridge.exe successfully over the last couple of days. My OS is RedHat 7.2 and wine is the download rpm file: codeweavers-wine-20011108-5.i386.rpm The program I am trying to run on wine came with my Rex 6000 pda. It is an interesting gadget (I have a couple of REX 5000 units which can be loaded from
2008 Sep 06
0
Saab Electronic Parts Catalogue (EPC) hangs upon startup
...will now get another screen which on the left hand size has a diagram of the parts and on the right hand side part number. You can drag the diagram to move it around the screen. If you try doing that Wine will crash with following error: > > > >Code: > >err:heap:HEAP_ValidateInUseArena Heap (nil): bad size 00000040 for in-use arena 0xe114e0 >err:heap:HEAP_ValidateInUseArena Heap (nil): bad size 00000020 for in-use arena 0xe11778 >err:heap:HEAP_ValidateInUseArena Heap (nil): bad size 00000018 for in-use arena 0x21cc98 >err:heap:HEAP_ValidateInUseArena Heap (nil): bad size...
2002 Mar 01
1
Maxon's Cinema4D Net Client debugging messages
...the debugging output about not finding stuff significant or critical? What else could I do? Regards, Kerstin debugging messages (excerpt): warn:file:CreateFileA Unable to get full filename from 'windose/C4DNET_R73 PC/C4D_NET_Client.exeprefsec4d_language.prf' (GLE 2) warn:heap:HEAP_IsRealArena Heap 0x40ee0000: block 0x868442 is not inside heap warn:heap:HEAP_IsRealArena Heap 0x40ee0000: block 0x868442 is not inside heap skipping... warn:heap:HEAP_IsRealArena Heap 0x40ee0000: block 0x868442 is not inside heap warn:heap:HEAP_IsRealArena Heap 0x40ee0000: block 0x74fc90 is not inside heap...
2004 Aug 11
5
problem with delphi bde app
...WineEngCreateFontInstance just using first face for now warn:gdi:GDI_GetObjPtr Invalid handle 0xbb8 warn:x11drv:SWP_DoOwnedPopups (0x10026) hInsertAfter = (nil) fixme:font:WineEngCreateFontInstance just using first face for now warn:gdi:GDI_GetObjPtr Invalid handle 0xbc0 warn:heap:HEAP_ValidateInUseArena Heap 72e90000: invalid in-use arena magic for 729121c8 warn:heap:HEAP_ValidateInUseArena Heap 72e90000: invalid in-use arena magic for 7291c208 warn:file:wine_nt_to_unix_file_name L"JET1b1b.tmp" not found in /home/jleszews/.wine/dosdevices/x: warn:ntdll:NtCreateFile L"\\??\\X:\\JE...
2009 Feb 26
3
[LLVMdev] Garbage collection
...of the Boehm GC: It's a completely unmaintainable mess of > #ifdefs > > A little bit off topic: Has anybody tried building a concurrent GC - running > in a different _process_, instead of a thread? Yes, I had a proof of concept implementation of a GC with - shared memory as the GC arena, - (C++) throw-catch-based marking - simple lookup rules for (in-arena) associated instance metadata. I never had the need to finish the implementation, but the fork approach worked reasonably well, and the mark and sweep parts ran in the forked process, with the shared memory communicating back...
2001 Nov 20
3
Running Visio?
...penFile 'd:\visio\system\filter32\emigs9.flt' not found or sharing violation although the file is emigs2.flt. Providing a link fixes this message, but it doesn't help Visio :-( Then there are a lot of messages along warn:gdi:GDI_GetObjPtr Invalid handle 0 warn:heap:HEAP_ValidateInUseArena Heap 40e30000: invalid in-use arena magic for 40e30f77 warn:gdi:GDI_GetObjPtr Invalid handle 0 warn:gdi:GDI_GetObjPtr Invalid handle 0 warn:heap:HEAP_ValidateInUseArena Heap 40e30000: invalid in-use arena magic for 40e30f77 warn:heap:HEAP_IsRealArena Heap 0x40e30000: block 0x407623a7 is not inside...