]> Kevux Git Server - fll/commit
Cleanup: remove "local" workaround in execute function.
authorKevin Day <thekevinday@gmail.com>
Mon, 12 Apr 2021 00:14:06 +0000 (19:14 -0500)
committerKevin Day <thekevinday@gmail.com>
Mon, 12 Apr 2021 00:14:06 +0000 (19:14 -0500)
commit3859e3d59c35da0c5d502fa6f62da40ed5348351
tree29c39674c03f024c819915739ec10330ac8290d1
parent3b7073d16aa842d7fc31903680f9579f434cf1c2
Cleanup: remove "local" workaround in execute function.

At the time I was unable to determine the cause.

Now, I strongly suspect it was due to the way threads were being created on the parent stack and the child threads could not access them once a resize function happened.
The resize can, on occasion (and likely more often than not), relocate the address location of the range (array).
This relocation in memory likely caused the weird memory behavior.

Now that the memory is allocated such that the it is an array of allocated pointers, the memory addresses should not change when the array of pointers is resized.
The address to the pointers might change, but from the perspective of the child threads, they don't exist or otherwise matter anyway.

Removing the work around cleans up some clutter and what is essentially a waste of resources.
level_3/controller/c/private-rule.c