06 2022 档案
摘要:项目搭建时,发现在使用高版本 sentry-cli 上传 pdb 文件后会报 404 错误,同事猜测高版本的 sentry-cli 会返回错误的地址,建议我用低版本的试一下 依据教程,我在 windows 上安装 1.72.2 的 sentry-cli curl -sL https://sentry
阅读全文
摘要:官方的解释 “Cronet is the networking stack of Chromium put into a library for use on mobile. This is the same networking stack that is used in the Chrome b
阅读全文
摘要:今天在编译项目时,代码审查提示 “Single-parameter constructors should be marked explicit” 于是就在构造函数前加上 explicit 下面为最小的示例,这个示例主要是按文件创建时间排序并删除过期的文件 #include <iostream> #
阅读全文
摘要:常用的 windbg 命令 .ecxr 用来切换到异常发生时的上下文,主要用在分析静态 dump 文件的时候。当我们使用 .reload 命令去强制加载库的 pdb 文件后,需要执行 .ecxr 命令,重新切换到异常上下文 kn/kv/kp 用来查看当前线程的函数调用堆栈。如果要查看当前进程的所有线
阅读全文