Skip to content
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

Integration Candidate 2020-10-07 #936

Merged
merged 13 commits into from
Oct 6, 2020
Merged

Integration Candidate 2020-10-07 #936

merged 13 commits into from
Oct 6, 2020

Commits on Sep 29, 2020

  1. Fix #897, fix incorrect use of EventCount

    Do not use EventCount to track whether an "unregistered" event
    was generated, because that by definition came from a different app
    than the one that "owns" that field.
    
    This just adds a separate field to track that state, so it doesn't
    potentially modify the counter for an unrelated app.
    jphickey committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    02b3a54 View commit details
    Browse the repository at this point in the history
  2. Fix #651, Use resource ID for memory pools

    Instead of identifying a memory pool by its memory address,
    use a resource ID.  IDs are a constant size, regardless of
    whether the host machine is 32 or 64 bits.
    
    - IDs can be put into commands/telemetry and maintain a more
      consistent format with consistent alignment requirements.
    - IDs can be independently verified without dereferencing
      memory.  Previously the only way to validate a memory pool
      was to read the address pointed to, which results in a SEGV
      if the address was bad.
    jphickey committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    f6ae2fb View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

  1. Fix #923, Perform appid lookup early

    Move the AppID lookup to be early in the CFE_SB_SendMsgFull implementation.
    Avoids double locking between SB+ES and avoids a block-scope local variable.
    jphickey committed Sep 30, 2020
    Configuration menu
    Copy the full SHA
    a4ffe5b View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2020

  1. Merge pull request #898 from jphickey/fix-897-evs-unreg-appid

    Fix #897, EVS unregistered AppID
    astrogeco authored Oct 1, 2020
    Configuration menu
    Copy the full SHA
    5a64dd7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #925 from jphickey/fix-923-appid-lookups

    Fix #923, Perform appid lookup early
    astrogeco authored Oct 1, 2020
    Configuration menu
    Copy the full SHA
    948fa07 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #917 from jphickey/fix-651-abstract-mempool-id

    Fix #651, Use resource ID for memory pools
    astrogeco authored Oct 1, 2020
    Configuration menu
    Copy the full SHA
    3a809eb View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2020

  1. Configuration menu
    Copy the full SHA
    71b8044 View commit details
    Browse the repository at this point in the history
  2. Update #899, Use sizeof() for output strings

    Also check/ensure null termination of output
    jphickey authored and skliper committed Oct 2, 2020
    Configuration menu
    Copy the full SHA
    590025a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #899 from skliper/fix705-rm-os-dependence

    Fix #705, Use cFE defines to size arrays
    astrogeco authored Oct 2, 2020
    Configuration menu
    Copy the full SHA
    7e755c3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3715b61 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #919 from CDKnightNASA/fix-888-return_code

    Fix #888, Add typedef for function return status codes
    astrogeco authored Oct 2, 2020
    Configuration menu
    Copy the full SHA
    5d5cfac View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2020

  1. HOTFIX, correct doxygen refs

    Corrects doxygen links to symbols which have been updated
    jphickey committed Oct 5, 2020
    Configuration menu
    Copy the full SHA
    ac402f3 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2020

  1. Configuration menu
    Copy the full SHA
    73479f7 View commit details
    Browse the repository at this point in the history