QNSystemTool.h 323 B

12345678910111213141516171819
  1. //
  2. // QNSystemTool.h
  3. // QiniuSDK
  4. //
  5. // Created by WorkSpace_Sun on 2020/4/2.
  6. // Copyright © 2020 Qiniu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface QNSystemTool : NSObject
  10. // 获取当前进程ID
  11. + (int64_t)getCurrentProcessID;
  12. // 获取当前线程ID
  13. + (int64_t)getCurrentThreadID;
  14. @end