Marcel Raad
32be68c9a2
Compile fix for BOOST_USE_WINDOWS_H
...
With BOOST_USE_WINDOWS_H defined, get_process_times must be explicitly prefixed with the winapi namespace because ADL cannot deduce it.
2014-08-25 17:04:34 +02:00
Ion Gaztañaga
5a976aa521
Use ___sync_synchronize instead of ___atomic as the later is only available in latest builds.
2014-08-14 01:01:01 +02:00
Ion Gaztañaga
e8c4994b45
Merge branch 'master' of https://github.com/DonOregano/interprocess into DonOregano-master
2014-08-14 00:33:59 +02:00
Lars Hagström
fb52749ed2
fix memory barriers in atomic operations
2014-08-12 10:29:39 +02:00
Ion Gaztañaga
4e56b3c032
Reorganized Doxygen marks to obtain a better header reference
2014-08-04 00:18:14 +02:00
Ion Gaztañaga
58019f0d9a
Trac #10229 : Compiling errors in interprocess\detail\os_file_functions.hpp
2014-07-31 23:41:05 +02:00
Ion Gaztañaga
3c09ceec0c
Renamved variable "hz" as it conflicts with AIX's system variable.
2014-07-30 16:38:50 +02:00
Ion Gaztañaga
ad1b7f301c
Massive but simple changes:
...
- Removed all tabs
- Changed all Doxygen @cond/@endcond tags with preprocessor sections, as Doxygen still has some problems when parsing this code. This also makes unmatched Doxygen sections a compilation error, which is easier to detect.
2014-07-30 11:46:32 +02:00
Adam Wulkiewicz
048c570c70
Fix compilation error in MinGW, invalid return type (pointer to function)
2014-07-28 13:47:26 +02:00
Ion Gaztañaga
dfed5bbab5
Fixes #10230 : No Sleep in interprocess::winapi
2014-07-28 00:09:47 +02:00
Ion Gaztañaga
06eef6f4e8
intermodule_singleton fixes for many platforms:
...
- Use Boost.Container to allow debug-release mixed code (in some platforms, std:: containers' ABI changes from Debug to Release)
- By default non-Phoenix and Lazy singletons.
- Use atexit instead of the global object destructor to obtain LIFO semantics.
- Avoid testing Phoenix singletons, as in many plataforms calling atexit from atexit is not supported.
2014-07-14 23:34:17 +02:00
Ion Gaztañaga
a3e766e635
Fix compilation error in Mingw, GetProcAddress does not return void*, but a pointer to function
2014-07-14 23:32:16 +02:00
Ion Gaztañaga
de72bbf2d8
Fixed vector_test and cleaned up intermodule singleton code.
2014-07-10 21:38:52 +02:00
Ion Gaztañaga
fe40c36e6c
Removed unused variable and strict aliasing warnings in GCC.
2014-06-16 21:07:10 +02:00
Ion Gaztañaga
1eb0000ac9
Fixed unused variable and redeclaration warnings.
2014-06-06 14:06:53 +02:00
Ion Gaztañaga
360a39d078
Removed unneeded dependency from Boost.Math
2014-06-06 14:06:11 +02:00
Adam Wulkiewicz
0be5672e70
Fix MinGW warnings caused by the unknown MSVC pragmas
2014-06-06 00:51:51 +02:00
Ion Gaztañaga
aa09229e8a
Fixes #10011 segment_manager::find( unique_instance_t* ) fails to compile
2014-06-02 14:40:19 +02:00
Ion Gaztañaga
81a5fcf56d
Removed trailing whitespaces.
2014-05-28 15:48:09 +02:00
Ion Gaztañaga
de405e89a3
* If BOOST_USE_WINDOWS_H
is defined, <windows.h> and other windows SDK files are included,
...
otherwise the library declares needed functions and structures to reduce the impact of including
those heavy headers.
* Added `get_size` to windows_shared_memory.
2014-05-28 15:30:04 +02:00
Ion Gaztañaga
02a7e7ecf2
More interprocess_exception fixes & #ifdef rephrasings
2014-05-25 20:50:39 +02:00
Adam Wulkiewicz
d0a647b129
Rephrase the #ifdef in errors.hpp
2014-05-25 17:21:50 +02:00
Adam Wulkiewicz
f1e1af0a47
Fix interprocess_exception throw in file_wrapper::priv_open_or_create.
...
On Windows the exception object is created using the result of GetLastError().
When compiled using MinGW the throw instruction itself is using some WinApi call which overwrites the last error.
Therefore the error code must be retrieved before the exception is thrown.
2014-05-25 17:13:35 +02:00
Richard Dale
ec7b1726a6
Provide support for the Cray C++ compiler. The Cray compiler defines __GNUC__
...
and generally supports gnu extensions to C and C++. It does not, however, support
inline assembly. The changes here are to avoid inline assembly when _CRAYC is asserted
in the preprocessor.
2014-05-20 13:14:53 -05:00
Ion Gaztañaga
fb1b0e547c
Fixes #9767 (bootstamp generation causes error in case of corrupt Windows Event Log) and #9911 (get_tmp_base_dir(...) failure)
2014-04-28 01:21:03 +02:00
Ion Gaztañaga
9191d2cca6
Fixed #9946 : ret_ptr uninitialized in init_atomic_func, fini_atomic_func
2014-04-26 23:47:09 +02:00
Ion Gaztañaga
65b5d34a04
Fixes #9835 , typos and MSVC version offset_ptr branchless optimization fix.
2014-04-08 06:50:52 +02:00
Ion Gaztañaga
cdda0f1854
Workaround for MSVC2013 x64
2014-02-15 00:15:39 +01:00
Ion Gaztañaga
0526a090be
Fixed previous git reset error.
2014-02-14 23:20:54 +01:00
Ion Gaztañaga
a0ea486cf6
Merge branch 'develop'
2014-02-14 20:03:03 +01:00
Ion Gaztañaga
f5f5c8c903
- Removed old fully_mapped_file.hpp header provoked by git transition
...
- Typo and extra space fix.
2013-12-23 10:21:59 +01:00
Ion Gaztañaga
07bb8d0940
Fixed error when adding os_thread_func_ptr_deleter, UNIX OSs also use it.
...
[SVN r86777]
2013-11-20 17:10:43 +00:00
Ion Gaztañaga
ecfec55cc9
Fixes #9408 ("Android does not support XSI_SHARED_MEMORY_OBJECTS")
...
[SVN r86765]
2013-11-19 11:53:51 +00:00
Ion Gaztañaga
7550571040
Removed auto_ptr to avoid deprecation warnings in newer compilers.
...
[SVN r86749]
2013-11-18 09:33:36 +00:00
Ion Gaztañaga
0773ececab
Fixes unfinished code in timed_wait for systems without POSIX timeout support, such as Darwin
...
[SVN r86529]
2013-10-31 08:54:12 +00:00
Ion Gaztañaga
960f8f35fd
Fixes #9284 ("WaitForSingleObject(mutex) must handle WAIT_ABANDONED")
...
[SVN r86512]
2013-10-29 08:05:27 +00:00
Ion Gaztañaga
467ba673d3
Simplified, refactored and unified (timed_)lock code based on try_lock(). There were several bugs in when handling timeout expirations.
...
[SVN r86511]
2013-10-29 07:39:21 +00:00
Ion Gaztañaga
94cfd64cfe
Fixes #9285
...
[SVN r86476]
2013-10-27 12:28:55 +00:00
Ion Gaztañaga
2fe567ffad
Fixes #9288
...
[SVN r86475]
2013-10-27 12:16:43 +00:00
Ion Gaztañaga
ffcddef660
Fixes #9226 (On some computers, Common Appdata is empty in registry, so boost interprocess cannot work)
...
[SVN r86318]
2013-10-15 09:07:36 +00:00
Ion Gaztañaga
b91dd9efbc
Removed incorrect assert(0) introduced when resolving #9221
...
[SVN r86317]
2013-10-15 08:54:28 +00:00
Ion Gaztañaga
a4ce866747
Fixes #9221 ("message_queue deadlock on linux")
...
[SVN r86316]
2013-10-15 08:02:09 +00:00
Ion Gaztañaga
5fb241ea57
Fixes #9248 ("os_file_functions.hpp: delete_subdirectories_recursive Win32 HANDLE leak")
...
[SVN r86304]
2013-10-14 19:50:13 +00:00
Ion Gaztañaga
5565248b45
Don't use EAGAIN as it's not used and requires missing cerrno
...
[SVN r86089]
2013-09-30 21:01:45 +00:00
Ion Gaztañaga
d472972da5
Don't use EAGAIN as it's not used and requires missing cerrno
...
[SVN r86088]
2013-09-30 21:01:27 +00:00
Ion Gaztañaga
94b33a6b0b
Notify all waiting threads in destructor to allow POSIX semantics on condition variables destruction.
...
[SVN r86001]
2013-09-29 11:46:58 +00:00
Ion Gaztañaga
cfbcaa43c3
Changed #include <boost/type_traits.hpp> with <boost/type_traits/alignment_of.hpp> + <boost/type_traits/make_unsigned.hpp> to avoid unnecessary header includes.
...
[SVN r86000]
2013-09-29 11:44:19 +00:00
Stephen Kelly
d3794a5d38
Remove obsolete MSVC check from pragma guard
...
git grep -h -B1 "^#\s*pragma once" | grep -v pragma | sort | uniq
is now clean.
[SVN r85952]
2013-09-26 13:02:51 +00:00
Stephen Kelly
40e5c3adab
Interprocess: Remove obsolete MSVC version check
...
[SVN r85935]
2013-09-26 09:41:56 +00:00
Ion Gaztañaga
aa6dd59f3b
Last merge for 1.55 (Interprocess)
...
[SVN r85705]
2013-09-16 17:01:45 +00:00
Ion Gaztañaga
868981c178
Remove boost/thread dependency in tests.
...
[SVN r85688]
2013-09-15 19:50:54 +00:00
Ion Gaztañaga
2e9c9f0eb8
Detect Mac Os version and allow process-shared synchronization primitives when minimum target is Mac Os Lion or newer (refs #6108 ).
...
[SVN r85685]
2013-09-15 19:38:08 +00:00
Ion Gaztañaga
762aaea036
Merging latest spin_wait improvements + unused typedef removal.
...
[SVN r85653]
2013-09-11 21:02:47 +00:00
Ion Gaztañaga
fcb3901d94
Removed unused typedefs
...
[SVN r85652]
2013-09-11 20:59:09 +00:00
Ion Gaztañaga
e84d3fd791
Improved spin_wait storing a long system tick variable instead of OS_highres_count_t, which can be quite big on POSIX systems. Removed __int64 constructor and replaced with static_cast to fix MinGW errors.
...
[SVN r85651]
2013-09-11 20:57:21 +00:00
Ion Gaztañaga
e559ac3275
Merged Interprocess to the release branch
...
[SVN r85615]
2013-09-08 20:07:03 +00:00
Ion Gaztañaga
0110909521
Fixes #9073
...
[SVN r85589]
2013-09-07 06:56:47 +00:00
Ion Gaztañaga
0037823e04
Fixes #8976
...
[SVN r85587]
2013-09-06 21:24:37 +00:00
Ion Gaztañaga
e585dc3b64
Fixes #7156
...
[SVN r85555]
2013-09-03 22:03:10 +00:00
Ion Gaztañaga
86a09a1990
Fixed linker error as the class static variable was used in an explicit instantiation
...
[SVN r85525]
2013-08-30 09:04:40 +00:00
Ion Gaztañaga
fd06b8e046
Fixes #9065
...
[SVN r85522]
2013-08-30 07:56:41 +00:00
Ion Gaztañaga
da01f2f69c
Added a new spin-wait method. Spins + yields for a system tick and then sleeps a tick.
...
[SVN r85505]
2013-08-28 21:33:26 +00:00
Ion Gaztañaga
c99f2ccc48
Merged revision(s) 84426-85443 from trunk/boost/interprocess. Merged revision(s) 84426-85443 from trunk/libs/interprocess. First Interprocess merge for 1.55
...
[SVN r85444]
2013-08-24 10:52:47 +00:00
Ion Gaztañaga
856d0d3f41
Fixes #9008
...
[SVN r85401]
2013-08-20 08:47:17 +00:00
Ion Gaztañaga
970c61477f
Add missing delete and additional checks in intermodule singleton code
...
[SVN r84994]
2013-07-09 21:22:15 +00:00
Ion Gaztañaga
1c3294e922
Fixes #8793
...
[SVN r84993]
2013-07-09 21:21:00 +00:00
Ion Gaztañaga
9b09f7a986
Fixes #8277
...
[SVN r84545]
2013-05-29 07:24:13 +00:00
Ion Gaztañaga
2cae351f47
Merged #7936 fix
...
[SVN r84426]
2013-05-22 19:13:18 +00:00
Ion Gaztañaga
356a5c6c25
Comment correction
...
[SVN r84425]
2013-05-22 19:01:19 +00:00
Ion Gaztañaga
5642037578
Changed bootstamp function in Windows to use EventLog service Changed bootstamp function in Windows to use EventLog service start time as system bootup time. Previously used LastBootupTime
from WMI was unstable with time synchronization and hibernation and unusable in practice. If you really need to obtain pre Boost 1.54 behaviour define BOOST_INTERPROCESS_BOOTSTAMP_IS_LASTBOOTUPTIME
from command line or detail/workaround.hpp
. Fixes #7936
...
[SVN r84424]
2013-05-22 18:43:16 +00:00
Ion Gaztañaga
b94d855f1b
Merged fix for #8595
...
[SVN r84392]
2013-05-20 15:49:50 +00:00
Ion Gaztañaga
006cb69770
Fixes #8595
...
[SVN r84390]
2013-05-20 15:38:24 +00:00
Ion Gaztañaga
fde02b1218
Fixes #8521
...
[SVN r84357]
2013-05-18 20:16:23 +00:00
Ion Gaztañaga
7ad221d122
Fixes #8521
...
[SVN r84356]
2013-05-18 20:15:36 +00:00
Ion Gaztañaga
612500dcbe
Container, Interprocess, Intrusive, Move merge for 1.54
...
[SVN r84341]
2013-05-18 10:40:55 +00:00
Ion Gaztañaga
b1a96aae57
Fixes #4557
...
[SVN r83959]
2013-04-18 20:03:18 +00:00
Ion Gaztañaga
541517763f
Added missing const to get_num_msg function
...
[SVN r83470]
2013-03-16 20:01:55 +00:00
Ion Gaztañaga
db5e21b4ab
Activated branchless code to more offset_ptr internal functions.
...
[SVN r83143]
2013-02-24 22:39:13 +00:00
Ion Gaztañaga
f9c10bd60d
Fixes #8030
...
[SVN r83142]
2013-02-24 22:38:07 +00:00
Ion Gaztañaga
b219e40e11
Use make_unsigned to avoid using signed/unsigned comparisons
...
[SVN r82845]
2013-02-12 21:22:23 +00:00
Ion Gaztañaga
c6b7df1f20
Fixes #7164 (first bug only)
...
[SVN r82810]
2013-02-10 22:07:41 +00:00
Ion Gaztañaga
9b9b3de1f1
Fixes #7928
...
[SVN r82803]
2013-02-10 11:20:47 +00:00
Ion Gaztañaga
ab0ce14109
Fixes #7928
...
[SVN r82802]
2013-02-10 11:18:57 +00:00
Ion Gaztañaga
6a78897793
Fixed #7924
...
[SVN r82799]
2013-02-10 00:30:06 +00:00
Ion Gaztañaga
15764dfc63
Fixes #7923
...
[SVN r82797]
2013-02-09 17:48:29 +00:00
Ion Gaztañaga
9d39752b91
Fixes #7682
...
[SVN r82796]
2013-02-09 17:45:09 +00:00
Ion Gaztañaga
0ad5e53c2b
Fixes #7598
...
[SVN r82778]
2013-02-07 20:00:42 +00:00
Ion Gaztañaga
ea3a29f166
Fixes #7598
...
[SVN r82537]
2013-01-18 21:12:04 +00:00
Ion Gaztañaga
9d096b45f6
Fixes #7484
...
[SVN r82434]
2013-01-10 20:06:22 +00:00
Ion Gaztañaga
0d1d939719
Fixes #7795 + Jamfile link flags fix for mingw64 clang + updated changelist.
...
[SVN r82250]
2012-12-28 23:12:08 +00:00
Ion Gaztañaga
dc03a98978
Fixes #7795
...
[SVN r82245]
2012-12-28 22:39:28 +00:00
Ion Gaztañaga
d660bb89d4
Fix for experimental windows synchronization utility initialization
...
[SVN r82128]
2012-12-20 21:53:50 +00:00
Ion Gaztañaga
a2e611fce0
Fix for experimental windows synchronization utility initialization
...
[SVN r82127]
2012-12-20 21:52:33 +00:00
Ion Gaztañaga
74d2079b54
Merged interprocess from trunk
...
[SVN r81664]
2012-12-01 23:08:28 +00:00
Marshall Clow
2d9433ea68
Removed missed usage of deprecated macros in Boost.Interprocess
...
[SVN r81576]
2012-11-26 21:11:23 +00:00
Ion Gaztañaga
c79c37183d
* Fixed GCC -Wshadow warnings.
...
* Experimental multiple allocation interface improved and changed again. Still unstable.
* Replaced deprecated BOOST_NO_XXXX with newer BOOST_NO_CXX11_XXX macros.
* [*ABI breaking]: changed node pool allocators internals for improved efficiency.
[SVN r81520]
2012-11-24 21:11:54 +00:00
Marshall Clow
eb1ae5e792
Remove usage of deprecated macros
...
[SVN r81493]
2012-11-23 15:14:54 +00:00
Ion Gaztañaga
ac41d855bb
Merge from trunk
...
[SVN r80689]
2012-09-24 12:17:34 +00:00
Ion Gaztañaga
a46700c3dd
Fixed broken multiallocation_chain due to container library changes
...
[SVN r80688]
2012-09-24 10:41:48 +00:00
Ion Gaztañaga
6a0d33c5d5
Performance improvements for offset_ptr
...
[SVN r80578]
2012-09-18 16:51:46 +00:00
Ion Gaztañaga
6b0c391bbc
Fixed return value for get_file_type, according to winapi GetFileType
...
[SVN r80576]
2012-09-18 16:44:02 +00:00
Ion Gaztañaga
5b1ad64bf9
Fixed forwarding error in Visual 2010
...
[SVN r80521]
2012-09-13 22:06:16 +00:00
Ion Gaztañaga
e5d655952d
Refactored out-of-line functions to avoid needless instantiations and improve cache friendliness
...
[SVN r80520]
2012-09-13 21:25:51 +00:00
Ion Gaztañaga
f5fe6b0a63
Added explicit constructor
...
[SVN r80519]
2012-09-13 21:22:05 +00:00
Ion Gaztañaga
2650d8f61c
Added overflow checks
...
[SVN r80515]
2012-09-13 18:56:08 +00:00
Ion Gaztañaga
00066b5506
Removed unused variables warnings + fixed comparison problems in test
...
[SVN r80405]
2012-09-05 09:29:56 +00:00
Ion Gaztañaga
fcaaaa52f8
Corrected bugs in condition variable time_wait calls
...
[SVN r80171]
2012-08-24 18:11:04 +00:00
Ion Gaztañaga
0ea2f8f91e
[named_/interprocess]sharable_mutex & [named_/interprocess]condition_any implemented
...
[SVN r80146]
2012-08-22 21:03:11 +00:00
Ion Gaztañaga
6362d11fb8
Updated copyright end year
...
[SVN r80132]
2012-08-22 04:51:05 +00:00
Ion Gaztañaga
c2891bae38
Optimized notify usage: called only when full or empty and outside the lock.
...
[SVN r79966]
2012-08-11 12:48:52 +00:00
Ion Gaztañaga
8b5ecbf3a4
- Ticket #7218
...
- Remove MADV_DONTNEED from most systems as it has destructive semantics non-compatible with POSIX_MADV_DONTNEED
[SVN r79964]
2012-08-11 12:44:32 +00:00
Ion Gaztañaga
b8a79215b3
Reimplemented message_queue
with a circular buffer index
...
[SVN r79897]
2012-08-07 09:11:27 +00:00
Ion Gaztañaga
023a5c7848
Added shrink_by
and advise
functions in mapped_region
.
...
[SVN r79895]
2012-08-07 09:06:43 +00:00
Ion Gaztañaga
5c6b2cb5e3
Ticket #7152
...
[SVN r79611]
2012-07-19 20:59:25 +00:00
Ion Gaztañaga
2ae887b8fb
Ticket 7152
...
[SVN r79609]
2012-07-19 20:57:54 +00:00
Ion Gaztañaga
87f8c84ab1
Merged revision(s) 79392-79557 from trunk/boost/interprocess
...
[SVN r79558]
2012-07-16 08:55:08 +00:00
Ion Gaztañaga
31cef340d4
Intermodule singleton optimization for windows
...
[SVN r79514]
2012-07-14 21:51:18 +00:00
Ion Gaztañaga
09b468e1b6
Mapped region synchronous flush & size optimization
...
[SVN r79512]
2012-07-14 21:49:41 +00:00
Ion Gaztañaga
c2caff17c4
Merged revision(s) 78115-78589 from trunk/boost/interprocess:
...
Merged from trunk
........
Fixes for scoped_allocator
........
Fixed clang warnings and errors
........
[SVN r78590]
2012-05-24 16:43:57 +00:00
Ion Gaztañaga
26d2be20ad
Emulation synchronization default in windows
...
[SVN r78587]
2012-05-24 15:45:14 +00:00
Ion Gaztañaga
5ac78de951
Trailing spaces and Phoenix singleton for intermodule_singleton
...
[SVN r78514]
2012-05-20 09:44:39 +00:00
Ion Gaztañaga
67bd5cba8d
Fixed clang warnings and errors
...
[SVN r78149]
2012-04-22 22:54:18 +00:00
Ion Gaztañaga
7dd4b5f270
Fixed clang warnings and errors
...
[SVN r78149]
2012-04-22 22:54:18 +00:00
Ion Gaztañaga
531baf7e1d
Merged from trunk
...
[SVN r78115]
2012-04-21 20:36:10 +00:00
Ion Gaztañaga
eb7333ff02
Reworked native windows process-shared synchronization utilities.
...
[SVN r77912]
2012-04-11 06:27:48 +00:00
Ion Gaztañaga
c9486c24ce
Ticket #6340 : Doc should mention that the "absolute time" used by timed_lock is UTC plus remove unneeded Doxygen generated macro documentation.
...
[SVN r76987]
2012-02-11 19:04:24 +00:00
Ion Gaztañaga
f7da76b974
Ticket #6340 : Doc should mention that the "absolute time" used by timed_lock is UTC plus remove unneeded Doxygen generated macro documentation.
...
[SVN r76987]
2012-02-11 19:04:24 +00:00
Ion Gaztañaga
c3a956694e
Documentation fixes (bug #6531 )
...
[SVN r76980]
2012-02-11 18:20:30 +00:00
Ion Gaztañaga
3189d4ee03
Documentation fixes (bug #6531 )
...
[SVN r76979]
2012-02-11 18:20:25 +00:00
Ion Gaztañaga
6ead740b86
#6412 : Use attribute names with underscores for GCC
...
[SVN r76606]
2012-01-21 10:53:02 +00:00
Ion Gaztañaga
33c17b9038
#6412 : Use attribute names with underscores for GCC
...
[SVN r76604]
2012-01-21 10:48:28 +00:00
Ion Gaztañaga
1248e28c9a
Fixes #6398 : intermodule_singleton crash in Windows
...
[SVN r76577]
2012-01-18 20:38:08 +00:00
Ion Gaztañaga
612f95e7e9
Fixes #6398 : intermodule_singleton crash in Windows
...
[SVN r76576]
2012-01-18 20:37:46 +00:00
Ion Gaztañaga
9e6b766677
Fixes from trunk for 1.49
...
[SVN r76264]
2012-01-01 19:14:12 +00:00
Ion Gaztañaga
cf710e920e
Use allocator traits instead of allocator::rebind
...
[SVN r76261]
2012-01-01 18:46:39 +00:00
Ion Gaztañaga
8ec7014fbf
Merging into release branch for 1.49
...
[SVN r76247]
2011-12-31 16:19:15 +00:00
Ion Gaztañaga
ba0e148634
Replaced pointer_to_other with pointer_traits
...
[SVN r76223]
2011-12-30 09:00:54 +00:00
Ion Gaztañaga
3a73b2243a
Updated mapped_region so that returns address 0 when default-constructed in UNIX
...
[SVN r76201]
2011-12-27 09:34:42 +00:00
Ion Gaztañaga
d4e618abac
Updated mapped_region so that returns address 0 when default-constructed in UNIX
...
[SVN r76200]
2011-12-27 09:34:33 +00:00
Ion Gaztañaga
190c6560ad
Added missing include in message queue
...
[SVN r76199]
2011-12-27 08:17:51 +00:00
Ion Gaztañaga
b7ad069451
Added missing include in message queue
...
[SVN r76198]
2011-12-27 08:17:29 +00:00
Ion Gaztañaga
fbc6c59049
Changes for 1.49
...
[SVN r76189]
2011-12-26 17:42:22 +00:00
Ion Gaztañaga
f24bd7b9b3
Changes for 1.49
...
[SVN r76181]
2011-12-26 17:21:36 +00:00
Ion Gaztañaga
b06fefafb4
Updated timed functions to fulfill posix requirements.
...
[SVN r76168]
2011-12-26 11:08:44 +00:00
Ion Gaztañaga
709e297a55
Bug #5518
...
[SVN r76146]
2011-12-24 19:25:39 +00:00
Ion Gaztañaga
54873e18f1
Bug #4383
...
[SVN r76143]
2011-12-24 18:57:27 +00:00
Ion Gaztañaga
834eb48d44
Bug #5738
...
[SVN r76127]
2011-12-24 10:05:06 +00:00
Ion Gaztañaga
7fe90aba65
Bug #5738
...
[SVN r76118]
2011-12-23 13:48:00 +00:00
Ion Gaztañaga
62ca8b0d36
Bug #5772
...
[SVN r76117]
2011-12-23 13:33:05 +00:00
Ion Gaztañaga
f8f8920d07
Bug #6287
...
[SVN r76114]
2011-12-23 12:00:27 +00:00