mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-22 14:23:04 +01:00
Stop marking bsearch_idx as pure; it is not.
svn:r17393
This commit is contained in:
parent
4cddcf8873
commit
651a0a2fb5
2 changed files with 5 additions and 3 deletions
|
@ -20,6 +20,9 @@ Changes in version 0.2.1.8-alpha - 2008-??-??
|
|||
rest, and don't automatically fail.
|
||||
- Use fcntl() for locking when flock() is not available. Should fix
|
||||
compilation on Solaris. Should fix Bug 873. Bugfix on 0.2.1.6-alpha.
|
||||
- Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug
|
||||
could make gcc generate non-functional binary search code. Bugfix
|
||||
on 0.2.0.10-alpha.
|
||||
|
||||
o Minor features (controller):
|
||||
- Return circuit purposes in response to GETINFO circuit-status. Fixes
|
||||
|
|
|
@ -105,11 +105,10 @@ void smartlist_uniq_strings(smartlist_t *sl);
|
|||
void smartlist_uniq_digests(smartlist_t *sl);
|
||||
void *smartlist_bsearch(smartlist_t *sl, const void *key,
|
||||
int (*compare)(const void *key, const void **member))
|
||||
ATTR_PURE;
|
||||
ATTR_PURE;
|
||||
int smartlist_bsearch_idx(const smartlist_t *sl, const void *key,
|
||||
int (*compare)(const void *key, const void **member),
|
||||
int *found_out)
|
||||
ATTR_PURE;
|
||||
int *found_out);
|
||||
|
||||
void smartlist_pqueue_add(smartlist_t *sl,
|
||||
int (*compare)(const void *a, const void *b),
|
||||
|
|
Loading…
Add table
Reference in a new issue