1. 09 5月, 2023 2 次提交
  2. 05 5月, 2023 2 次提交
  3. 04 5月, 2023 3 次提交
  4. 26 4月, 2023 3 次提交
    • Z
      feat: 修复pthread_exit中设置线程gdetach状态的位置 · 46818cdd
      zhangdengyu 提交于
      1、将设置线程detach状态的位置改为操作pthread链表之后,
         消除线程抢占之后执行pthread_join操作直接将线程从内核态删除
         并取消用户态内存映射导致用户态pthread节点未从pthread链表中删除的场景。
      
      Close: #I6JO8B
      Signed-off-by: Nzhangdengyu <zhangdengyu2@huawei.com>
      Change-Id: I71d01ca0fefe4c036f174a7e63f62097865ec89d
      46818cdd
    • O
      !878 避免ipv6使用 · e6b94861
      openharmony_ci 提交于
      Merge pull request !878 from fangting/master
      e6b94861
    • M
      Add SetThreadInfoCallback to libc.map.txt · 6593c484
      MapleStory 提交于
      SetThreadInfoCallback is introduced by dfx_signal_handler which is static linked to libc.
      If you want to record some crash-related thread running information when the crash signal arrives.
      You can use this mechanism to register callbacks. This callback is called in the signal handler,
      so you must handle it with care. You can store additional information in the passed buffer,
      which will be displayed in the FatalMessage field of the crash log.
      Signed-off-by: NMapleStory <zengzhi5@huawei.com>
      6593c484
  5. 24 4月, 2023 1 次提交
  6. 21 4月, 2023 3 次提交
  7. 20 4月, 2023 2 次提交
  8. 19 4月, 2023 3 次提交
  9. 18 4月, 2023 1 次提交
  10. 17 4月, 2023 4 次提交
  11. 14 4月, 2023 4 次提交
  12. 13 4月, 2023 3 次提交
    • O
      !868 libc-test脚本支持linux执行环境 · 7be45ea0
      openharmony_ci 提交于
      Merge pull request !868 from hhj/runtest_for_linux
      7be45ea0
    • H
      Fix crash that invalid func ptr when dso has dlclosed · 82c18939
      hhj 提交于
      Use atexit to register some callback from dso, but there is no
      unregister interface. After this dso closed, this callback in
      atexit callback chain is invalidate. This workround will save
      the dso that the callback come from, then when dso closed, the
      relative callbacks would cleared.
      
      Issue: #I6UEZQ
      Test:register atexit cb, then dlclose this dso
      Signed-off-by: Nhhj <huanghuijin@huawei.com>
      Change-Id: I0dfc15366dd51bbe677b9700131fbaf57622499c
      82c18939
    • H
      Add runtest_linux.sh for linux os · f9fd3edd
      hhj 提交于
      Libtest only support run in windows, so here add runtest_linux.sh for linux.
      
      Issue: #I6V6HI
      Test:cd third-party/musl/scripts && runtest_linux.sh
      Signed-off-by: Nhhj <huanghuijin@huawei.com>
      Change-Id: I0c5c78455f0e6d4a9e6e83d6e8f2c7f508e8c980
      f9fd3edd
  13. 10 4月, 2023 2 次提交
  14. 09 4月, 2023 2 次提交
    • O
      !861 feat: support EDF · 3bb6a7c2
      openharmony_ci 提交于
      Merge pull request !861 from zhangdengyu/supportEDF0404
      3bb6a7c2
    • Z
      feat: support EDF · cf4228a3
      zhangdengyu 提交于
      方案描述:
      1、liteos_a调i度框架支持EDF调度算法,默认优先调度EDF策略的任务
      2、用户态musl_c库适配新增调度算法,同步修改相关接口以支持用户态创建EDF进程与线程
      
      BREAKING CHANGE:
      support EDF对外变更描述:
      以下接口支持SCHED_DEADLINE调度策略:
      pthread_attr_getschedparam
      pthread_attr_setschedparam
      pthread_getschedparam
      pthread_setschedparam
      pthread_create
      sched_getscheduler
      sched_getparam
      sched_setparam
      sched_setscheduler
      
      Close:#I6T3P3
      Signed-off-by: Nzhangdengyu <zhangdengyu2@huawei.com>
      Change-Id: I1ceefc2fdfaecac7a93e5306da629756f9385f84
      cf4228a3
  15. 04 4月, 2023 1 次提交
  16. 31 3月, 2023 3 次提交
  17. 30 3月, 2023 1 次提交