7 Commits

Author SHA1 Message Date
baa1574746 Added possibility to use user defined memory ops:
Now u can create a special ndbuf with your custom memory operations,
 this is useful to keep ndbuf in a special mapped areas for a:
  - keep it secure (example lock pages to avoid your info going to swap)
  - using your own custom optimized allocator for your own block sizes
 Function: ndbuf_t *ndbuf_new_wmops(const struct ndbuf_memops *, const size_t);
  Args:
   1. Pointer to yout ops:
    struct ndbuf_memops {
     void *(*alloc)(size_t);
     uint32_t (*zero)(void *, size_t);
     void (*free)(void *ptr);
    };
   2. Size of chunk to grow buffer. if <= default value will be set.
2018-08-05 03:19:36 +03:00
0a9ff172a5 Fixed ret type warning; 2018-08-05 00:51:22 +03:00
Alexander Vdolainen
b6dba50071 NEWS updated; test commit (for sync); 2018-07-26 17:42:20 +03:00
Alexander Vdolainen
81bfa9eecc Fixed pkgconfig template file (version variable); 2018-07-26 16:05:46 +03:00
Alexander Vdolainen
f60082946c INSTALL now ignored; v0.0.1 2018-05-23 18:22:37 +03:00
Alexander Vdolainen
bb6d533c75 License reverted to LGPLv2.1; 2018-05-23 18:16:47 +03:00
0d2779e006 Initial one: moving useful code to separate tiny lib; 2017-11-24 23:54:42 +02:00