1. 09 5月, 2023 12 次提交
  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 2 次提交
    • 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