This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gem".

The branch, master has been updated
       via  9b4eee983c0347bb0e07f0b02823b3a6dffc4259 (commit)
       via  4e16c5ac030ce35872e76add272f459a9bb380d4 (commit)
       via  1cb39f0f2d3b007526666a0993b144281ebc23cf (commit)
       via  265786eb6aca99e329b42f8f98a609243a606d3f (commit)
       via  dd27eadcff83960d87e40d13714f18cb29fbf0f9 (commit)
       via  33ec81196ccddc1c1eb0f85e03f2f0961e608f89 (commit)
       via  dcb2a1efe29e7d3e45b77e78057b942b386b7512 (commit)
       via  04acd7c25a21691a050a69a0a4110f5aae6f7c7b (commit)
       via  812aee390ba4a39897eeaf869563ad4fb9967257 (commit)
       via  5106234c1b35b43780f68465482a6c1889098793 (commit)
      from  fad1264053ad6107821dfb1e3766813e02d1a9da (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9b4eee983c0347bb0e07f0b02823b3a6dffc4259
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:44:51 2012 +0100

    initialize all values before calling ioctl

commit 4e16c5ac030ce35872e76add272f459a9bb380d4
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:29:59 2012 +0100

    clarified w32 installation and GemLibs

commit 1cb39f0f2d3b007526666a0993b144281ebc23cf
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:14:53 2012 +0100

    reformatted text

commit 265786eb6aca99e329b42f8f98a609243a606d3f
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:11:12 2012 +0100

    adjusted to moving threads from Gem->Utils

commit dd27eadcff83960d87e40d13714f18cb29fbf0f9
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:06:50 2012 +0100

    moved threading stuff from Gem/ to Utils/

commit 33ec81196ccddc1c1eb0f85e03f2f0961e608f89
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 16:00:45 2012 +0100

    compat headers for moving thread-stuff to utils

commit dcb2a1efe29e7d3e45b77e78057b942b386b7512
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 15:50:50 2012 +0100

    simple (and untested) implementation of Thread
    
    currently this is only based on pthreads

commit 04acd7c25a21691a050a69a0a4110f5aae6f7c7b
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 12:57:15 2012 +0100

    display #CPUs at startup

commit 812aee390ba4a39897eeaf869563ad4fb9967257
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 12:56:47 2012 +0100

    moved Thread to Utils

commit 5106234c1b35b43780f68465482a6c1889098793
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date:   Fri Feb 3 12:40:02 2012 +0100

    start of Thread abstraction
    
    and trying to implement a getProcesserCount() function

-----------------------------------------------------------------------

Summary of changes:
 README.txt                                 |   65 +++++++----
 plugins/videoUNICAP/videoUNICAP.h          |    2 +-
 plugins/videoV4L2/videoV4L2.cpp            |    4 +-
 plugins/videoVLC/videoVLC.h                |    2 +-
 src/Gem/ImageLoad.cpp                      |    2 +-
 src/Gem/Makefile.am                        |   16 +---
 src/Utils/Makefile.am                      |   16 +++
 src/Utils/SIMD.cpp                         |    5 +-
 src/{Gem => Utils}/SynchedWorkerThread.cpp |    0
 src/{Gem => Utils}/SynchedWorkerThread.h   |    2 +-
 src/Utils/Thread.cpp                       |  180 ++++++++++++++++++++++++++++
 src/Utils/Thread.h                         |   63 ++++++++++
 src/{Gem => Utils}/ThreadMutex.cpp         |    0
 src/{Gem => Utils}/ThreadMutex.h           |    0
 src/{Gem => Utils}/ThreadSemaphore.cpp     |    0
 src/{Gem => Utils}/ThreadSemaphore.h       |    0
 src/{Gem => Utils}/WorkerThread.cpp        |    0
 src/{Gem => Utils}/WorkerThread.h          |    0
 src/deprecated/Gem/SynchedWorkerThread.h   |    4 +
 src/deprecated/Gem/ThreadMutex.h           |    4 +
 src/deprecated/Gem/ThreadSemaphore.h       |    4 +
 src/deprecated/Gem/WorkerThread.h          |    4 +
 src/deprecated/Makefile.am                 |   14 ++-
 23 files changed, 339 insertions(+), 48 deletions(-)
 rename src/{Gem => Utils}/SynchedWorkerThread.cpp (100%)
 rename src/{Gem => Utils}/SynchedWorkerThread.h (98%)
 create mode 100644 src/Utils/Thread.cpp
 create mode 100644 src/Utils/Thread.h
 rename src/{Gem => Utils}/ThreadMutex.cpp (100%)
 rename src/{Gem => Utils}/ThreadMutex.h (100%)
 rename src/{Gem => Utils}/ThreadSemaphore.cpp (100%)
 rename src/{Gem => Utils}/ThreadSemaphore.h (100%)
 rename src/{Gem => Utils}/WorkerThread.cpp (100%)
 rename src/{Gem => Utils}/WorkerThread.h (100%)
 create mode 100644 src/deprecated/Gem/SynchedWorkerThread.h
 create mode 100644 src/deprecated/Gem/ThreadMutex.h
 create mode 100644 src/deprecated/Gem/ThreadSemaphore.h
 create mode 100644 src/deprecated/Gem/WorkerThread.h


hooks/post-receive
-- 
Gem

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
pd-gem-CVS mailing list
pd-gem-CVS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pd-gem-cvs

Reply via email to