Skip to content

Releases: Snaipe/libcsptr

Version 2.0.3

Choose a tag to compare

@Snaipe Snaipe released this 10 Jun 09:53

Added --without-sentinel configure option to disable variadic argument sentinels

Version 2.0.2

Choose a tag to compare

@Snaipe Snaipe released this 26 Apr 14:19

libcsptr now produces a shared library.

Version 2.0.1

Choose a tag to compare

@Snaipe Snaipe released this 14 Apr 19:24

Made shared pointers use its own atomic functions for build compatibility on c99

Version 2.0.0

Choose a tag to compare

@Snaipe Snaipe released this 19 Mar 11:45

Warning: breaking changes to the interface

  • Removed the destructor helper macro
  • Changed the vararg usage to struct vararg. This change is NOT backward-compatible. Parenthesis around the value were removed with this change, and metadata is no longer passed as two separate parameters.
  • OS X and Windows support

Version 1.0.0

Choose a tag to compare

@Snaipe Snaipe released this 26 Jan 11:49
  • Smart pointers now take a mandatory value. Uninitialized smart pointers may still be retrieved with a direct call to smalloc.
  • Fixed some typos and updated documentation & samples to fit the latest interface.

Version 0.3.1

Choose a tag to compare

@Snaipe Snaipe released this 20 Jan 21:10
  • Removed --with-malloc-wrapper ./configure flag.
  • Removed malloc/free wrappers.
  • Added unit tests & coverage reports.
  • Fix for shared pointers accessing the wrong metadata.

Version 0.3

Version 0.3 Pre-release
Pre-release

Choose a tag to compare

@Snaipe Snaipe released this 20 Jan 21:09
  • Added --with-malloc-wrapper and --with-fixed-allocator flags for ./configure.
  • Added a fixed allocator support -- if the user does not want to override at runtime the allocators used by smalloc/sfree and just want to use malloc and free, they may enable this option using the --with-fixed-allocator configuration flag.
  • Added malloc/free wrappers. Pointers produced by malloc can be used with the smart attribute, and smart pointers may be passed to free. This option is deactivated by default, and can be enabled using the --with-malloc-wrapper configuration flag.

Version 0.2

Version 0.2 Pre-release
Pre-release

Choose a tag to compare

@Snaipe Snaipe released this 20 Jan 21:07
  • unique_ptr and shared_ptr now take a type parameter instead of a size.
  • Added support for static array types in the unique_ptr and shared_ptr macros.
  • Added smart array allocation through smalloc. smalloc has been changed to take a mandatory nmemb parameter, that may be 0 if the allocated type is a scalar, and an array for any other value.

Version 0.1

Version 0.1 Pre-release
Pre-release

Choose a tag to compare

@Snaipe Snaipe released this 20 Jan 21:06
  • Added unique_ptr and shared_ptr macros, added smart variable attribute.
  • Added smalloc, sfree, sref, and get_smart_user_meta. Alternative allocators may be specified by setting the contents of smalloc_allocator.