]> git.ipfire.org Git - thirdparty/bind9.git/commit
chg: dev: Change isc_tid to be isc_tid_t type (a signed integer type)
authorOndřej Surý <ondrej@isc.org>
Sat, 28 Jun 2025 12:06:05 +0000 (14:06 +0200)
committerOndřej Surý <ondrej@isc.org>
Sat, 28 Jun 2025 12:06:05 +0000 (14:06 +0200)
commit97bb7eb4df0dc3e06ac6d07fae68daefbfc022ff
tree07ddfad62a71921388ca9621ac0dc766fcd0561d
parent2c58fe486b0ce26a6e31e70f9dcc53573f7ce51b
parentdd37fd6a49b41b12a0f9582bc72ae171aae29e1f
chg: dev: Change isc_tid to be isc_tid_t type (a signed integer type)

Change the internal type used for isc_tid unit to isc_tid_t to hide the
specific integer type being used for the 'tid'.  Internally, the isc_tid
unit is now using signed integer type.  This allows us to have negatively
indexed arrays that works both for threads with assigned tid and the
threads with unassigned tid.  Additionally, limit the number of threads
(loops) to 512 (compile time default).

Merge branch 'ondrej/tidy-up-isc-tid' into 'main'

See merge request isc-projects/bind9!10656