Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2000-02-04 | 1) added void* state argument to tdb_traverse. guess what! there were | Luke Leighton | 1 | -10/+5 | |
two places i found where it was appropriate to _use_ that third argument, in locking.c and brlock.c! there was a static traverse_function and i removed the static variable, typecast it to a void*, passed it to tdb_traverse and re-cast it back to the traverse_function inside the tdb_traverse function. this makes the use of tdb_traverse() reentrant, which is never going to happen, i know, i just don't like to see statics lying about when there's no need for them. as i had to do in samba-tng, all uses of tdb_traverse modified to take the new void* state argument. 2) disabled rpcclient: referring people to use SAMBA_TNG rpcclient. i don't know how the other samba team members would react if i deleted rpcclient from cvs main. damn, that code's so old, it's unreal. 20 rpcclient commands, instead of about 70 in SAMBA_TNG. (This used to be commit 49d7f0afbc1c5425d53019e234d54ddf205c8e9a) | |||||
2000-01-16 | added code to allow traversal of the byte range lock database | Andrew Tridgell | 1 | -2/+42 | |
this is used with "smbstatus -B" to dump the lock list (This used to be commit 5f022629146701e6d543f77007dc944e4277ab0c) | |||||
2000-01-14 | damn, Solaris already has a "enum lock_type" | Andrew Tridgell | 1 | -4/+5 | |
changed it to "enum brl_type" (This used to be commit 6b9ee7662c7afa70f6b20889e6b0ae1dcd677f9f) | |||||
2000-01-14 | we now pass all byte range locking tests | Andrew Tridgell | 1 | -2/+57 | |
the last piece was to use a smb timeout slightly larger than the locking timeout in bloking locks to prevent a race (This used to be commit 1b54cb4a33a65e62c2e3189b78ef073869a60c75) | |||||
2000-01-13 | the bulk of the new byte range locking coode | Andrew Tridgell | 1 | -0/+275 | |
it doesn't map to posix locks yet, that will come later. (This used to be commit 7f2a493095887cb0aae915ac36b9cded71d3a7a7) |