Age | Commit message (Collapse) | Author | Files | Lines |
|
Michael
(This used to be commit 254be79799acc69db88a5500a2f755c84553f8ef)
|
|
Michael
(This used to be commit 2839d7f67a0d3ed5b4841bf3c12ce73972636b88)
|
|
Michael
(This used to be commit bc4e03f2ddb669758e27e2a5c32e15c7d6c5257d)
|
|
(This used to be commit ae522f907ed1b7533d0824224d692c64c7169057)
|
|
(This used to be commit af9e0421529104d2583c58f7723abe8612e78f53)
|
|
use shared library versions if they are provided by the system.
This puts talloc and tdb in a similar situation as popt:
the system version is used if provided but if it's not there or if it
is too old, we use our internal version statically.
(This used to be commit 86f88eb7b51377344eebf0b6fabad0f5459b3f45)
|
|
Michael
(This used to be commit 38855a9f145b54d05f4a508562fc1a6595e0d895)
|
|
(This used to be commit 51769f5cfc0f3a9f85ea533598a1f769e108d075)
|
|
(This used to be commit 35c8ebdca2612b52cd3eb2aafd35041d17173722)
|
|
(This used to be commit 2b8939975267fc4774bccd2a35ea9a35129d0a2b)
|
|
(This used to be commit 75ffc2c50d70e6f4108c3e6843c8d2bb212f6d9e)
|
|
Not sure if we can produce one from the other, so I manually made
them equal for now.
Michael
(This used to be commit 1c14c457bea75fb3055712547cca501e8ef3fc20)
|
|
(This used to be commit 9f402c607f44663cab91cc7d2139f62b84c99cc0)
|
|
(This used to be commit 5cc7a638e93e5f3540755b441a99d4fd3c9c7134)
|
|
(This used to be commit 6deca23b6c66616fbf5ba004e9b778aa68790df6)
|
|
A talloc pool is a chunk of memory that can be used as a context for further
talloc calls. Allocations with the pool as the parent just chew from that
memory by incrementing a pointer. If the talloc pool is full, then we fall back
to the normal system-level malloc(3) to get memory.
The use case for talloc pools is the transient memory that is used for handling
a single SMB request. Incrementing a pointer will be way faster than any malloc
implementation.
There is a downside of this: If you use talloc_steal() to move something out of
the pool, the whole pool memory is kept around until the last object inside the
pool is freed. So if you talloc_free() the pool, it might happen that the
memory is freed later. So don't hang anything off a talloc pool that should
live long.
Volker
(This used to be commit 60ef9a84f0bd18d48e453c08aa420d17275e0881)
|
|
Michael
(This used to be commit 2a2c28584cdb65fcea8563eb3bf21fea497fdff3)
|
|
Michael
(This used to be commit a0caedb94f6f7c62ae706e35a4c0b2876f74978d)
|
|
(This used to be commit 0c829e6ee6f43299cc5889c2af3d0402256da0d0)
|
|
(This used to be commit 91d7ba5202e6c375456a42c2c6861f63c7fcfc20)
|
|
(This used to be commit c8947fda23eb874a7694bdee1b4de605744c2769)
|
|
bunch of {}'s.
- Start working on Python equivalents for various EJS tests.
- Fix regression in argument order for reg_diff_apply() in EJS bindings.
(This used to be commit c550c03372cb260b78f6a6c132e70571bc4cb852)
|
|
of thois.
Thanks to metze for pointing this out
(This used to be commit 4a5e1047fff0620aa534b147ac7e0bd0416a8fe7)
|
|
While at it, also add a PRINTF_ATTRIBUTE for talloc_vasprintf.
(This used to be commit 5b3a8c8ae195e6a98357a407a0699493f54a8b79)
|
|
(This used to be commit 760fcc8bfa2a7cd7641465cb3bae889e9e0fbc75)
|
|
(This used to be commit 7962d221fcb877c9fd3bbc890827338de54ca94a)
|
|
(This used to be commit 3320bd401f7b669bd62f83bf16a1c16ad0543a5c)
|
|
(This used to be commit dfd5b456f932268e2b1a82e2775037d356b9483e)
|
|
(This used to be commit 8625cd403ba3a7d2b1b1fccfeb5efd7e21de0135)
|
|
(This used to be commit ef790ebf3a712dbbb85d6af65c804199c2c084fc)
|
|
(This used to be commit 02d259c2c45c03dbfcd16173df93d7ba96ed1419)
|
|
metze
(This used to be commit c179807165b84dd832ab64f794034960668e5957)
|
|
metze
(This used to be commit 410cdf789a72209f9e10321519fe18ab40a43f95)
|
|
metze
(This used to be commit 7fecb8f3cd9f5f69dce7b9e566011e5de1e01a4a)
|
|
(This used to be commit 91133d27110ee6447dbc64f1c8d52cb90ca1a86c)
|
|
that.
(This used to be commit 228dd6830eb9c91287bb3e0233d8b3a404ff3676)
|
|
(This used to be commit 40a8cd0d2fd4d10110243ee75ff92bef73bb06b9)
|
|
(This used to be commit 3692ba8299d4177289ca401fa467143ad14ccad4)
|
|
having it as a real function.
metze
(This used to be commit 2b2e8414650f4793e7fd6e7fb368383ee268948f)
|
|
metze
(This used to be commit c0d095c8c9c1f9a7a96771e20680c105f0cce308)
|
|
talloc_vasprintf_append_buffer()
metze
(This used to be commit 780c1c776e15f7224256a0ba0bda3e9f04702abe)
|
|
metze
(This used to be commit 8532076720ddaf3409db1196550cd7c6884380fc)
|
|
metze
(This used to be commit c2931540bc6e2d7665ef46a123f1c0618c3b55b7)
|
|
only strlen() vs. strnlen() is the difference now.
metze
(This used to be commit 92106e6b7e4ed3b6e1aa942b6dc8ae52fdf5805b)
|
|
metze
(This used to be commit 4bce808917e296a0d50f39516da06bfb12418cf8)
|
|
(This used to be commit 66000a1fa2365cd8a08e3ecaaa116b27eb74e8b8)
|
|
Jeremy.
(This used to be commit 0844dbf597191b3e4d35a696695b229e986daec4)
|
|
Jeremy.
(This used to be commit 5bb8613b86a6788efde840d5b50710f9afd22fed)
|
|
truncated strings.
Jeremy.
(This used to be commit 948d32bb62b0e8c68cc961a380eae602ffc71870)
|
|
(This used to be commit 9647f860bdd5c0a74583e886182bd041a45e7655)
|