摘要: 保存如下内容到opendump.bat,已管理员权限打开文件 @echo offecho 正在启用Dump...reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps"reg 阅读全文
posted @ 2023-11-13 11:25 开花石头 阅读(70) 评论(0) 推荐(0)
摘要: 最近项目需要控制子线程执行一段程序之后,等待主线程信号,达到同步执行的目的, 研究了下condition_variable ,以便项目中使用 #include <thread> #include <iostream> #include "glock.h" #include "mylogger.h" 阅读全文
posted @ 2023-11-13 11:04 开花石头 阅读(17) 评论(0) 推荐(0)
摘要: import numpy as np from scipy.optimize import curve_fit,minimize import matplotlib.pyplot as plt # 定义 MultivariateJacobianFunction def multivariate_ja 阅读全文
posted @ 2023-11-10 16:44 开花石头 阅读(97) 评论(0) 推荐(0)
摘要: 1. 使用统一的调用约束(__stdcall) 2. array of 调用 delphi 接口: procedure ProcessArray(const Arr: array of Integer); stdcall; VC: typedef void(__stdcall *ProcessArr 阅读全文
posted @ 2023-11-10 16:35 开花石头 阅读(17) 评论(0) 推荐(0)