上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 因为考虑多线程处理,所以加了互斥;对缓存最大值没加限制。 typedef struct { int event; int type; MSG_INFO info; } ADPT_CLIENT_DATA; class BCallback { public: int32_t Callback(const 阅读全文
posted @ 2022-10-21 15:25 sciapex 阅读(25) 评论(0) 推荐(0)
摘要: PIE(ASLR) 代码段、数据段地址随机化 进程地址空间各区域随机化的措施,称之为ASLR(Address Space Layout Randomization)。ASLR通过随机放置进程关键数据区域的地址空间来防止攻击者能可靠地跳转到内存的特定位置来利用函数。现代操作系统一般都加设这一机制,以防 阅读全文
posted @ 2022-08-26 09:24 sciapex 阅读(308) 评论(0) 推荐(0)
摘要: 更新了python, 然后运行脚本,提示如下告警信息 /usr/local/lib/python3.8/dist-packages/paramiko/transport.py:219: CryptographyDeprecationWarning: Blowfish has been depreca 阅读全文
posted @ 2022-05-20 15:57 sciapex 阅读(13223) 评论(0) 推荐(0)
摘要: 1 概述 本文主要阐述使用genivi dlt离线存储相关事项 GENIVI DLT 提供日志和跟踪接口,基于 AUTOSAR 标准 4.0 DLT 中指定的标准化协议。它由其他 GENIVI 组件使用,但可以用作其他应用程序的日志记录框架,与 GENIVI 无关。 本文主要对应DLT Daemon 阅读全文
posted @ 2022-03-28 09:27 sciapex 阅读(1255) 评论(0) 推荐(0)
摘要: 规则: 1. 操作符的处理顺序是从到右, 比如obj<<arg1<<arg2<<arg3, 执行顺序为obj.opt(arg1)-->obj.opt(arg2)->obj.opt(arg3) 2. 如何知道已完成了最后一个操作,这个可以通过析构来确认,比如下面代码的例子,Info()里面创建一个对象 阅读全文
posted @ 2022-03-04 10:12 sciapex 阅读(196) 评论(0) 推荐(0)
摘要: --host: arm-linux/arm-qnx ./configure --host=arm-linux --prefix=/your_workspace/install CC=/release_version/toolchains/aarch64--glibc--stable/bin/aarc 阅读全文
posted @ 2022-02-11 15:34 sciapex 阅读(1358) 评论(0) 推荐(0)
摘要: 用于wireshark在3.2版本前没有解析SOME/IP协议的帮助脚本 -- SOME/IP Protocol -- declare our protocol local tempstr someip_proto = Proto("someip","SOME/IP Protocol") servi 阅读全文
posted @ 2022-01-25 11:08 sciapex 阅读(1233) 评论(0) 推荐(0)
摘要: .../main.cpp:9: ...server.hpp: In member function ‘virtual void server::run()’: ...server.hpp:151:10: error: cannot convert ‘server::run()::<lambda(au 阅读全文
posted @ 2021-12-10 09:43 sciapex 阅读(108) 评论(0) 推荐(0)
摘要: set(SI_NAME_LIST # TODO:: # 1. add serviceinterface for your need radar_ssrv_interface vision_ssrv_interface ) foreach(SI_NAME ${SI_NAME_LIST}) ac_com 阅读全文
posted @ 2021-12-02 14:32 sciapex 阅读(401) 评论(0) 推荐(0)
摘要: 开源代码编译一般都使用两种, 一种是大部分通过autoconf的configure进行生成,这种可以通过configure --help了解可以通过配置哪些参数调整编译的细节 另外一种是CMakeFile,而这种通过没有configure。不过,可以通过cmake自身的语法来进行配置。 首先是CMA 阅读全文
posted @ 2021-10-22 14:15 sciapex 阅读(5427) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 8 下一页