Age | Commit message (Collapse) | Author | Files | Lines |
|
(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)
|
|
(This used to be commit 2585c6feb22b4409a635017875a2e93fe7c436ba)
|
|
wrap it into a function so that the function name
in the backtrace shows what happens.
metze
(This used to be commit 0216ff6daa276e413811ca32cca0a66b4b2abe55)
|
|
(This used to be commit c0111223e2201b2c62e25a4c88e1ee445fde5ab6)
|
|
(This used to be commit 5c9b19271e0e3ad897499707003ce4703ffa4870)
|
|
(This used to be commit db92b76a0034899f5f0dc2d012ee7709ff9a6132)
|
|
(This used to be commit 40c0919aaa9c1b14bbaebb95ecce53eb0380fdbb)
|
|
(This used to be commit 76c6bfdeb51b5673bbabe0ca3d8bff3b74a327ee)
|
|
(This used to be commit 84b468b2f8f2dffda89593f816e8bc6a8b6d42ac)
|
|
(This used to be commit db065db67a5edcefc6dbe2e504a4922b9b9f7f21)
|
|
(This used to be commit cb92da26799d27975dd27255007573cef6397d8a)
|