05/10/2022 18:34, Tyler Retzlaff: > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > Newly added code can go to eal_common_thread.c rather than introduce a > > > new common/rte_thread.c file (or is there a rationale for this?). > > > > i will make this change in the next revision. if anyone does object i > > hope they will do so quickly. > > looking at this more closely i'm going to back away from making the > adjustment here. if Thomas and/or Dmitry could comment it would be > appreciated. > > it appears that functions placed in eal_common_xxx files are consumed > internally by the eal where rte_xxx files are functions that are exposed > through public api.
It is not so clear. There is already eal_common_thread.c which implements the same kind of functions, so I think you should move your new functions here. > since these additions are public api it seems they should remain in > rte_thread.c Let's not have 2 .c files for the same purpose in the same directory. > i won't change this in the next revision, but please do correct me if > i'm still not on track. Please I would prefer to keep all in one file: eal_common_thread.c Thank you