anchao opened a new pull request, #13519:
URL: https://github.com/apache/nuttx/pull/13519

   ## Summary
   
   1. fs/reference_count: set default reference count option to n
   
   Most of developers will not have the scenarios of open/close file 
descriptors in multi-threads,
   The default option will incur additional code size overhead for such devices.
   this PR will preserve the behavior before PR#13296 was introduced, and 
ensure that the default code size is not affected.
   
   Note that this option will ensure the safety of access to the file
   system from multi-tasks (Task A blocking rw(fd), then Task B close(fd)),
   the disadvantage is that it will increase the amount of code-size,
   there is no need to enable this option if the application could ensure
   he file operations are safe.
   
   2. sched/timer: move sigev_notify_thread_id to SIG_EVTHREAD
   
   Some developers do not need this kind of advanced features,
   move sigev_notify_thread_id into SIG_EVTHREAD to save the code size.
   
   3. Revert "olimex-stm32-p407: adjust memory layout"
   
   This reverts commit 9a9d0a647ef1b123627872ab7e139c1c5b9be1a0.
   
   4. Revert "stm3240g-eval:knxwm and olimex-stm32-p407:kmodule remove 
FS_REFCOUNT"
   
   This reverts commit 756faf3cc9acb2820855a45d28fcbb0cefacbf4f.
   
   Signed-off-by: chao an <[email protected]>
   
   ## Impact
   
   N/A
   
   ## Testing
   
   ci-check


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to