摘要:
https://www.cnblogs.com/oxsir/p/12524722.html 阅读全文
摘要:
类似samba https://www.raidrive.com 阅读全文
摘要:
在xshell下,用notepad++写了个简单的shell脚本,内容如下: 1 #!/bin/bash 2 3 if [ "X$force" = "X1" ]; then 4 5 echo 1 6 7 elif [ "X$force" = "X2" ]; then 8 9 echo 2 10 11 阅读全文
摘要:
问题1:现象如下 【原因】软链接文件下载到windows里,文件大小变为65535,不再是软链接。 问题2:交叉编译,x86_64机器移植到aarch上运行,stat()返回22,即Invalid Parameter 【定位过程】: 1)用最简代码调用stat()再移植到aarch上运行,返回成功; 阅读全文
摘要:
摘自:https://www.cnblogs.com/lzpong/p/5881380.html 调试器(如VS2008和老版GDB)往往只支持all-stop模式,调试多线程程序时,如果某个线程断在一个断点上,你的调试器会让整个程序freeze,直到你continue这个线程,程序中的其他线程才会 阅读全文
摘要:
摘自:https://blog.csdn.net/zhangye3017/article/details/80382496 1. 线程的查看首先创建两个线程: 1 #include <stdio.h> 2 #include <unistd.h> 3 #include <pthread.h> 4 #i 阅读全文
摘要:
摘自:https://www.cnblogs.com/lizhigang/p/7306777.html 原文:http://blog.csdn.net/gatieme/article/details/50603682?locationNum=2&fps=1 目录(?)[-] log4j的衍生品 1 阅读全文
摘要:
摘自:https://download.csdn.net/download/ydsec2/4376887?utm_source=iteye_new 功能:syslog风格的配置文件,易学易用可以灵活配置日志输出的格式,类似于log4j的pattern layout纲目分类模型,比log4j系列的继承 阅读全文