Thread: [eq-commit] SF.net SVN: equalizer: [940] trunk/src (Page 7)
Brought to you by:
eile
|
From: <ei...@us...> - 2007-03-20 16:31:25
|
Revision: 940
http://svn.sourceforge.net/equalizer/?rev=940&view=rev
Author: eile
Date: 2007-03-20 09:31:19 -0700 (Tue, 20 Mar 2007)
Log Message:
-----------
[x] May break build
[ ] Breaks existing applications
[x] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description:
Add support and example for resident render client processes. Refactor
eqPly example to be able to run as resident render client (-c). Add
loader support for TCPIP port.
Win32 build untested.
Bugfixes:
- Fix GLX event thread exit memory leaks
- Potential STL allocation problem on Win32 (Node::addConnectionDescription)
- Add '--' before remote launched client args to un-confuse eqPly command
line parser
- Call Thread::exit when Thread::run returns
Modified Paths:
--------------
trunk/src/VS2005/Equalizer.vcproj
trunk/src/VS2005/eqPly Example.vcproj
trunk/src/examples/configs/stress.2D.eqc
trunk/src/examples/configs/stress.eqc
trunk/src/examples/configs/test.eqc
trunk/src/examples/eqPly/Makefile
trunk/src/examples/eqPly/config.cpp
trunk/src/examples/eqPly/config.h
trunk/src/examples/eqPly/eqPly.h
trunk/src/examples/eqPly/main.cpp
trunk/src/lib/Makefile
trunk/src/lib/base/thread.cpp
trunk/src/lib/client/X11Connection.h
trunk/src/lib/client/client.cpp
trunk/src/lib/client/client.h
trunk/src/lib/client/glXEventThread.cpp
trunk/src/lib/client/glXEventThread.h
trunk/src/lib/client/server.h
trunk/src/lib/net/connectionType.h
trunk/src/lib/net/net.h
trunk/src/lib/net/node.cpp
trunk/src/lib/net/node.h
trunk/src/lib/net/packets.h
trunk/src/server/loader.l
trunk/src/server/loader.y
trunk/src/server/server.h
Added Paths:
-----------
trunk/src/examples/eqPly/eqPly.cpp
trunk/src/examples/eqPly/localInitData.cpp
trunk/src/examples/eqPly/localInitData.h
trunk/src/lib/client/nodeType.h
trunk/src/lib/net/nodeType.h
Removed Paths:
-------------
trunk/src/examples/eqPly/appInitData.cpp
trunk/src/examples/eqPly/appInitData.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-23 12:39:59
|
Revision: 945
http://svn.sourceforge.net/equalizer/?rev=945&view=rev
Author: eile
Date: 2007-03-23 05:39:45 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Description: Simplify netperf to use one-sided, non-threaded communication.
Modified Paths:
--------------
trunk/src/lib/net/connection.h
trunk/src/lib/net/socketConnection.cpp
trunk/src/tests/netperf/netperf.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-23 12:53:38
|
Revision: 946
http://svn.sourceforge.net/equalizer/?rev=946&view=rev
Author: eile
Date: 2007-03-23 05:53:35 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description:
Create pipe() performance benchmark and test. VS2005 proj file is untested
Modified Paths:
--------------
trunk/src/lib/net/node.cpp
trunk/src/tests/Makefile
trunk/src/tests/pipePerf/Makefile
trunk/src/tests/pipePerf/netperf.cpp
Added Paths:
-----------
trunk/src/VS2005/pipePerf.vcproj
trunk/src/tests/pipePerf/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-23 12:58:12
|
Revision: 947
http://svn.sourceforge.net/equalizer/?rev=947&view=rev
Author: eile
Date: 2007-03-23 05:58:08 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description:
rename netperf->pipeperf
Modified Paths:
--------------
trunk/src/VS2005/pipePerf.vcproj
Added Paths:
-----------
trunk/src/tests/pipePerf/pipeperf.cpp
Removed Paths:
-------------
trunk/src/tests/pipePerf/netperf.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-23 14:17:00
|
Revision: 948
http://svn.sourceforge.net/equalizer/?rev=948&view=rev
Author: eile
Date: 2007-03-23 07:16:58 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Description: Fix and add pipeperf to Win32 build
Modified Paths:
--------------
trunk/src/VS2005/Equalizer.sln
trunk/src/lib/net/pipeConnectionWin32.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-26 15:33:50
|
Revision: 951
http://svn.sourceforge.net/equalizer/?rev=951&view=rev
Author: eile
Date: 2007-03-26 07:40:28 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
[x] May break build
[ ] Breaks existing applications
[x] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description: Win32: Implement overlapped IO for SDP compatibility:
Might break non-Windows builds. Will be tested in a moment, and fixed alongside with the missing documentation.
- refactor socketConnection in socketConnectionWin32 and socketConnectionPosix
- use overlapped accept and reads in socketConnectionWin32
- add 'hostname' and 'hostname:port' syntax to --eq-listen command line option
- server accepts --eq-listen parameter
- Bugfix: uninitialized read during node connection handling
- Bugfix: race condition in PipeConnection::read/write
Modified Paths:
--------------
trunk/src/VS2005/Equalizer.vcproj
trunk/src/lib/net/connection.cpp
trunk/src/lib/net/connection.h
trunk/src/lib/net/connectionDescription.cpp
trunk/src/lib/net/connectionSet.cpp
trunk/src/lib/net/fdConnection.h
trunk/src/lib/net/global.cpp
trunk/src/lib/net/global.h
trunk/src/lib/net/node.cpp
trunk/src/lib/net/packets.h
trunk/src/lib/net/pipeConnection.h
trunk/src/lib/net/pipeConnectionWin32.cpp
trunk/src/lib/net/socketConnection.cpp
trunk/src/lib/net/socketConnection.h
trunk/src/server/eqServer.cpp
trunk/src/server/server.cpp
trunk/src/tests/netperf/netperf.cpp
trunk/src/tests/pipePerf/pipeperf.cpp
Added Paths:
-----------
trunk/src/lib/net/socketConnectionPosix.cpp
trunk/src/lib/net/socketConnectionWin32.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-27 12:45:34
|
Revision: 954
http://svn.sourceforge.net/equalizer/?rev=954&view=rev
Author: eile
Date: 2007-03-27 05:45:32 -0700 (Tue, 27 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description: Implement Server::useConfig( <string> )
Modified Paths:
--------------
trunk/src/examples/eqPly/eqPly.cpp
trunk/src/lib/client/commands.h
trunk/src/lib/client/packets.h
trunk/src/lib/client/server.cpp
trunk/src/lib/client/server.h
trunk/src/server/eqServer.cpp
trunk/src/server/loader.h
trunk/src/server/loader.l
trunk/src/server/loader.y
trunk/src/server/server.cpp
trunk/src/server/server.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-28 09:03:58
|
Revision: 956
http://svn.sourceforge.net/equalizer/?rev=956&view=rev
Author: eile
Date: 2007-03-28 02:03:57 -0700 (Wed, 28 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description: Fix compile warning on Ubuntu 6.10
Modified Paths:
--------------
trunk/src/README.Linux
trunk/src/examples/eqPly/plyFileIO.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-28 12:12:08
|
Revision: 958
http://svn.sourceforge.net/equalizer/?rev=958&view=rev
Author: eile
Date: 2007-03-28 05:12:06 -0700 (Wed, 28 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Description: Unbreak Linux build
Modified Paths:
--------------
trunk/src/server/loader.l
Added Paths:
-----------
trunk/src/tests/pipeperf/
Removed Paths:
-------------
trunk/src/tests/pipePerf/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-29 08:13:37
|
Revision: 959
http://svn.sourceforge.net/equalizer/?rev=959&view=rev
Author: eile
Date: 2007-03-29 01:13:34 -0700 (Thu, 29 Mar 2007)
Log Message:
-----------
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Description: Fix some positional problems with multilevel
decompositions. Update some hactar test configs.
Modified Paths:
--------------
trunk/src/PLATFORMS
trunk/src/examples/configs/2-node.2D.eqc
trunk/src/examples/configs/2-node.DB.eqc
trunk/src/examples/configs/3-node.2D.eqc
trunk/src/examples/configs/3-node.DB.ds.eqc
trunk/src/examples/configs/3-node.DB.eqc
trunk/src/examples/configs/4-node.2D.eqc
trunk/src/examples/configs/4-node.DB.bs.eqc
trunk/src/examples/configs/4-node.DB.ds.eqc
trunk/src/examples/configs/4-node.DB.eqc
trunk/src/examples/configs/5-node.2D.eqc
trunk/src/examples/configs/5-node.DB.ds.eqc
trunk/src/examples/configs/5-node.DB.eqc
trunk/src/examples/eqPly/eqPly.cpp
trunk/src/lib/client/frameData.cpp
trunk/src/lib/client/renderContext.cpp
trunk/src/server/compound.cpp
trunk/src/server/frameData.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-29 15:57:03
|
Revision: 960
http://svn.sourceforge.net/equalizer/?rev=960&view=rev
Author: eile
Date: 2007-03-29 08:56:59 -0700 (Thu, 29 Mar 2007)
Log Message:
-----------
Cleanup build and install process to prepare for rpm building
Cleanup dependency building
Update FAQ
'make clean' is adviced
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[x] Documentation
Modified Paths:
--------------
trunk/src/FAQ
trunk/src/Makefile
trunk/src/commitTemplate.txt
trunk/src/examples/libmesh/Makefile
trunk/src/examples/pixelBench/Makefile
trunk/src/make/FreeBSD.mk
trunk/src/make/Linux.i686.mk
trunk/src/make/Linux.ia64.mk
trunk/src/make/Linux.x86_64.mk
trunk/src/make/NetBSD.mk
trunk/src/make/rules.mk
trunk/src/make/system.mk
trunk/src/proto/pthreads/Makefile
trunk/src/server/Makefile
Property Changed:
----------------
trunk/src/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 10:23:49
|
Revision: 962
http://svn.sourceforge.net/equalizer/?rev=962&view=rev
Author: eile
Date: 2007-03-30 03:23:45 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
First working, but incomplete, rpm generation
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/Makefile
trunk/src/examples/eqPly/eqPly.cpp
trunk/src/make/rules.mk
trunk/src/make/system.mk
Added Paths:
-----------
trunk/src/make/Equalizer.spec
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 11:32:55
|
Revision: 963
http://svn.sourceforge.net/equalizer/?rev=963&view=rev
Author: eile
Date: 2007-03-30 04:32:53 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Move and add vmml headers to installer
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/Makefile
trunk/src/make/rules.mk
Property Changed:
----------------
trunk/src/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 12:32:14
|
Revision: 964
http://svn.sourceforge.net/equalizer/?rev=964&view=rev
Author: eile
Date: 2007-03-30 05:32:08 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Add config files to installation, fix installation on Darwin
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/examples/Makefile
trunk/src/make/rules.mk
trunk/src/make/system.mk
Added Paths:
-----------
trunk/src/examples/configs/Makefile
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 14:05:26
|
Revision: 965
http://svn.sourceforge.net/equalizer/?rev=965&view=rev
Author: eile
Date: 2007-03-30 07:05:24 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Cleanup request handler code to avoid ugly int->pointer->int casts
[x] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/base/requestHandler.cpp
trunk/src/lib/base/requestHandler.h
trunk/src/lib/client/config.cpp
trunk/src/lib/client/glXEventThread.cpp
trunk/src/lib/client/server.cpp
trunk/src/lib/net/deltaMasterCM.cpp
trunk/src/lib/net/fullMasterCM.cpp
trunk/src/lib/net/node.cpp
trunk/src/lib/net/session.cpp
trunk/src/server/channel.cpp
trunk/src/server/node.cpp
trunk/src/server/pipe.cpp
trunk/src/server/window.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 14:11:31
|
Revision: 966
http://svn.sourceforge.net/equalizer/?rev=966&view=rev
Author: eile
Date: 2007-03-30 07:11:30 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Fix Win32 build after vmmlib relocation
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/VS2005/Equalizer.vcproj
trunk/src/lib/net/commandQueue.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 14:13:40
|
Revision: 967
http://svn.sourceforge.net/equalizer/?rev=967&view=rev
Author: eile
Date: 2007-03-30 07:13:38 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Fix RHEL4 32 bit warnings, bump version number
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/examples/eqPly/eqPly.cpp
trunk/src/lib/client/config.cpp
trunk/src/lib/client/version.h
trunk/src/lib/net/session.cpp
trunk/src/make/Equalizer.spec
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-03-30 15:39:52
|
Revision: 968
http://svn.sourceforge.net/equalizer/?rev=968&view=rev
Author: eile
Date: 2007-03-30 08:39:51 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Some rpm-related cleanups
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/client/image.cpp
trunk/src/make/Equalizer.spec
trunk/src/make/system.mk
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-01 13:11:36
|
Revision: 969
http://svn.sourceforge.net/equalizer/?rev=969&view=rev
Author: eile
Date: 2007-04-01 06:11:33 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Re-enable building of separate server DSO
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/README
trunk/src/examples/Makefile
trunk/src/make/rules.mk
trunk/src/server/Makefile
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-03 09:43:47
|
Revision: 974
http://svn.sourceforge.net/equalizer/?rev=974&view=rev
Author: eile
Date: 2007-04-03 02:43:45 -0700 (Tue, 03 Apr 2007)
Log Message:
-----------
Create getter/setter for strings in ConnectionDescription,
Continue SDP implementation up to working netPerf
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/client/client.cpp
trunk/src/lib/net/connectionDescription.cpp
trunk/src/lib/net/connectionDescription.h
trunk/src/lib/net/node.cpp
trunk/src/lib/net/socketConnection.cpp
trunk/src/lib/net/socketConnectionWin32.cpp
trunk/src/server/connectionDescription.cpp
trunk/src/server/loader.y
trunk/src/tests/netperf/netperf.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-03 16:58:39
|
Revision: 985
http://svn.sourceforge.net/equalizer/?rev=985&view=rev
Author: eile
Date: 2007-04-03 09:58:37 -0700 (Tue, 03 Apr 2007)
Log Message:
-----------
Fix ld.so conf file generation
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/examples/configs/Makefile
trunk/src/make/rules.mk
trunk/src/make/system.mk
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-05 07:57:46
|
Revision: 996
http://svn.sourceforge.net/equalizer/?rev=996&view=rev
Author: eile
Date: 2007-04-05 00:57:45 -0700 (Thu, 05 Apr 2007)
Log Message:
-----------
Consolidate connection description parsing for --eq-server option
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/client/client.cpp
trunk/src/lib/net/node.cpp
trunk/src/server/eqServer.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-10 13:46:31
|
Revision: 1000
http://svn.sourceforge.net/equalizer/?rev=1000&view=rev
Author: eile
Date: 2007-04-10 06:46:29 -0700 (Tue, 10 Apr 2007)
Log Message:
-----------
Add debug pring for Server::useConfig, fix capitalization of global iattrs
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/client/global.cpp
trunk/src/server/server.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-10 14:45:36
|
Revision: 1003
http://svn.sourceforge.net/equalizer/?rev=1003&view=rev
Author: eile
Date: 2007-04-10 07:45:34 -0700 (Tue, 10 Apr 2007)
Log Message:
-----------
Use debian-comliant DESTDIR instead of PREFIX for installation rules.
[ ] May break build
[ ] Breaks existing applications
[ ] Bugfix
[ ] New Feature
[x] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/examples/configs/Makefile
trunk/src/make/Equalizer.spec
trunk/src/make/rules.mk
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ei...@us...> - 2007-04-11 07:01:37
|
Revision: 1006
http://svn.sourceforge.net/equalizer/?rev=1006&view=rev
Author: eile
Date: 2007-04-11 00:01:35 -0700 (Wed, 11 Apr 2007)
Log Message:
-----------
Fix free-form connection description parsing, add 8-window DB config
[ ] May break build
[ ] Breaks existing applications
[x] Bugfix
[x] New Feature
[ ] Cleanup
[ ] Optimization
[ ] Documentation
Modified Paths:
--------------
trunk/src/lib/net/connectionDescription.cpp
trunk/src/lib/net/node.cpp
Added Paths:
-----------
trunk/src/examples/configs/8-window.DB.eqc
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|