Takatoshi Kondo
c04ef9efe5
Merge pull request #38 from redboltz/copy_msgpack_object_by_memcpy
...
Fixed issue #37 .
2013-12-15 20:25:15 -08:00
Takatoshi Kondo
b774c07d19
When the compiler is gcc, use memcpy, otherwise use an assignment operator.
...
The memcpy approach is a workaround for gcc's bug. The speed performance on gcc is the same between both approach. But on clang, the memcpy approach is 10% slower than an assignment approach. Hence I added the switching approach code using compiler checked macro.
Note: __GNUC__ is defined both gcc and clang. So I use __GNUC__ && !__clang__
2013-12-16 13:25:09 +09:00
Takatoshi Kondo
949b472f7e
Merge pull request #41 from redboltz/old_compiler_bus_error_workaround
...
Fixed an unused function warning.
2013-11-26 17:31:02 -08:00
Takatoshi Kondo
be67d3e362
Fixed an unused function warning.
...
This fix is a part of issue #33 .
35ba41c245
2013-11-27 10:33:52 +09:00
Takatoshi Kondo
3e2ae7cc78
Fixed issue #37 .
...
It seems to be gcc's bug.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58416
2013-11-11 09:51:04 +00:00
Nobuyuki Kubota
505660e1fa
Merge pull request #35 from redboltz/add_libgtest
...
Added libgtest.a for make check
2013-10-30 21:44:57 -07:00
Takatoshi Kondo
5a9f89ae1f
Added libgtest.a for make check
2013-10-29 13:35:26 +09:00
Jens Alfke
6f56345dd8
Fixed unused-function warnings
...
The function bodies in header files should be declared static inline.
2013-10-22 21:52:13 +00:00
Takatoshi Kondo
edef040688
Merge pull request #34 from redboltz/fix_freed_mem_access
...
Fixed freed memory accessing bug.
2013-10-22 05:11:42 -07:00
Takatoshi Kondo
9fc196e750
Fixed freed memory accessing bug.
...
(Issue #32 )
2013-10-22 12:46:06 +00:00
Takatoshi Kondo
dc1698eaf4
Merge pull request #31 from redboltz/fix_buffer_leak
...
Fixed buffer leak bug.
In the case of the function next() returns true:
Whichever the argument result is holding the zone or not, the ownership of the zone always should be delegated from 'unpacker' to 'unpacked'.
In the case of the function next() returns false:
Whichever the argument result is holding the zone or not, the members of 'unpacked' should be reset.
2013-10-14 23:59:04 -07:00
Takatoshi Kondo
53ded063a0
Fixed buffer leak bug.
2013-10-15 11:03:47 +09:00
Takatoshi Kondo
8a2c50c374
Merge pull request #28 from redboltz/solve_narrow_conversion
...
Added the casts for the byte data.
2013-08-29 21:10:03 -07:00
Takatoshi Kondo
f71148f3a6
Merge pull request #29 from redboltz/add_copyright
...
Added copyright.
2013-08-29 21:09:08 -07:00
Takatoshi Kondo
172105828c
Added copyright.
2013-08-30 13:07:42 +09:00
Takatoshi Kondo
6cca6cb20d
Added the casts for the byte data.
2013-08-30 12:57:20 +09:00
Takatoshi Kondo
b7336f817c
Merge pull request #27 from redboltz/malloc_free_match
...
Fixed malloc delete unmatch bug.
2013-08-26 18:56:26 -07:00
Takatoshi Kondo
88356b79be
Fixed malloc delete unmatch bug.
2013-08-27 09:37:42 +09:00
Takatoshi Kondo
ce9e543882
Merge pull request #26 from redboltz/add_throw
...
added return value checking.
2013-08-23 00:34:21 -07:00
Takatoshi Kondo
3ff3ba83f4
added return value checking.
2013-08-23 16:28:02 +09:00
Takatoshi Kondo
edb525a030
Merge pull request #25 from redboltz/typo_fix
...
fixed a typo in a comment
2013-08-20 17:42:54 -07:00
Takatoshi Kondo
ea5314f076
fixed a typo in a comment
2013-08-21 09:32:51 +09:00
Nobuyuki Kubota
be8e53163b
Updated wiki links and removed old message
2013-08-17 19:00:16 +09:00
Nobuyuki Kubota
79151f517f
Imported quickstarts from wiki
2013-08-17 18:51:56 +09:00
Nobuyuki Kubota
e8ffe7ef96
Merge pull request #23 from ulikoehler/master
...
Add README syntax highlighting
2013-08-17 02:32:36 -07:00
Nobuyuki Kubota
b5a7b5e277
Fixed a compile error caused by MSGPACK_ADD_ENUM with msgpack::packer
2013-08-17 18:20:32 +09:00
Nobuyuki Kubota
85b5e1088f
str 8 and bin 8/16/32 support in deserializer
2013-08-17 17:24:50 +09:00
Uli Köhler
680ddb1557
Add README syntax highlighting
2013-08-17 03:11:15 +02:00
Nobuyuki Kubota
44fff522bd
Merge pull request #17 from grynko/patch-1
...
Update README.md
2013-07-29 03:33:29 -07:00
grynko
90815f0d27
Update README.md
...
fix typos
2013-07-02 12:06:14 +03:00
Nobuyuki Kubota
f07950c60a
add the same test as commit:764bfdcb9f for __gnu_cxx::__exchange_and_add
...
refs #8
2013-04-09 18:14:23 -07:00
Nobuyuki Kubota
f8c4125892
Merge branch '__sync_check' of github.com:nori0428/msgpack-c into nori0428-__sync_check
2013-04-09 17:50:08 -07:00
Nobuyuki Kubota
1f30cc203a
Temporary fix for a compilation error on OS X
...
fixes #3
fixes #15
2013-04-09 17:38:49 -07:00
nori0428
764bfdcb9f
check whether exists __sync_{sub, add}_and_fetch
2013-03-01 11:08:37 +09:00
Vasily Titskiy
f290814f64
Fix implementation of atomic functions for GCC 3.x
...
__gnu_cxx::__exchange_and_add returns OLD, not NEW value
2013-01-03 19:28:00 -08:00
Hans Duedal
3a2508545d
Fix for mismatched free() / delete / delete[]
...
When doing streaming deserialization, valgrind complains about mismatched free()...
It's caused by calls to auto_ptr::free for zones that are null pointers.
2013-01-03 19:27:17 -08:00
Nicolas Despres
79a06a338a
Remove unused variables.
2013-01-03 19:26:06 -08:00
Nicolas Despres
509f27eee1
cpp: Fix convert.enum_member test (issue #50 ).
...
The patch add serialization operator for the given enum to avoid the use
of a cast which leads to strict-aliasing warnings and the test to fail.
Solution suggested by qehgt.
2013-01-03 19:20:07 -08:00
Nobuyuki Kubota
e511c32a36
Imported .gitignore from the original MessagePack git repository
...
This commit includes a pull request from polrop(ignore-cpp-bootstrapped-files branch).
2013-01-03 19:17:36 -08:00
FURUHASHI Sadayuki
b463d9b687
reorganized tree
2013-01-03 19:13:28 -08:00
FURUHASHI Sadayuki
e96e20ccfd
make C/C++ implementation independent from other language implementations
2013-01-03 19:08:11 -08:00
FURUHASHI Sadayuki
06ebdbfd37
updated README.md
2013-01-03 19:04:51 -08:00
FURUHASHI Sadayuki
df9fd047b4
fixed previous commit
2013-01-03 19:00:20 -08:00
FURUHASHI Sadayuki
85d65c59d2
MessagePack for Ruby moved to https://github.com/msgpack/msgpack
2012-12-20 10:39:47 -08:00
FURUHASHI Sadayuki
754126644f
ruby: v0.4.8
2012-12-16 17:17:11 -08:00
FURUHASHI Sadayuki
220436f4f9
Merge pull request #123 from brixen/patch-1
...
Update ruby/compat.h
2012-12-16 16:39:58 -08:00
Brian Ford
b62a6ae1d0
Update ruby/compat.h
...
The exceptions for Rubinius are unnecessary now and are actually
causing msgpack not to install due to the incorrect function prototypes
that are in this file. In MRI, this is the prototype
VALUE rb_gc_enable();
Anyway, these are unnecessary for Rubinius.
2012-12-16 16:27:05 -08:00
INADA Naoki
eae0532b8c
Split msgpack-php repository.
2012-08-20 22:04:44 +09:00
UENISHI Kota
d642487f99
MessagePack for Erlang moved to https://github.com/msgpack/msgpack-erlang
2012-07-17 22:39:31 +09:00
FURUHASHI Sadayuki
320510506b
MessagePack for OCaml moved to https://github.com/msgpack/msgpack-ocaml
2012-07-04 17:40:11 -07:00