-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up ES startup object table #170
Comments
Imported from trac issue 139. Created by jphickey on 2016-03-01T11:12:34, last modified: 2019-03-05T14:57:55 |
Trac comment by jphickey on 2016-03-01 11:20:10: Commit [changeset:05afcd28] addresses this, branch In doing this change I reviewed the other existing fields and determined that the ObjectPtr, ObjectId, StackPtr, TcbPtr fields are also unreferenced. These were also removed. The only thing not entirely clear is with respect to the It is possible we want to rename |
Trac comment by sduran on 2016-03-14 17:00:24: Seems reasonable to remove these unused fields, but they were put there at some point for a reason - definitely double check this change with Alan Cudmore. |
Trac comment by stashakk on 2016-03-15 08:19:09: Nice clean up makes the file more explicit and clear |
Trac comment by acudmore on 2016-03-15 13:31:58: I think it is OK to remove these fields. Also, since this code is in generic cFE code, it is not supposed to be changed or customized for each OS or mission. My original thought for including the table at all was to allow for patching in flight to add a task or startup function call if needed. ( this is still possible, the unused fields don't really matter in this case ) |
Trac comment by jphickey on 2016-03-22 17:41:00: Follow-on change in [changeset:aef7917] which removes "ObjectKey" I investigated the possibility of qualifying this structure as To avoid growing this change therefore this does not modify the const-ness of the structure, this will have to be done as a separate ticket. The startup procedure is being re-evaluated in #173 and this would be the logical place to also address the read-only status of this table. |
Trac comment by jphickey on 2016-03-22 18:14:14: This has added into the |
Trac comment by glimes on 2016-03-30 15:10:01: development now includes |
Trac comment by jhageman on 2019-03-05 14:57:55: Milestone renamed |
In reviewing #159 it was determined that a better approach to changing the type of the "StackPtr" field would be to do some more general cleanup here and remove the unused field.
The text was updated successfully, but these errors were encountered: