Welcome![Sign In][Sign Up]
Location:
Search - debug linux

Search list

[Linux-Unixlinux下的程序调试工具gdb

Description: linux下的程序调试工具gdb,非常好用,-It is the debug tool \"gdb\"for linux,very useful
Platform: | Size: 757868 | Author: | Hits:

[OS Developsrial-debug

Description: Linux 下串口的通讯调试程序C语言编写的源代码-Linux serial communications debugging C-language source code
Platform: | Size: 8331 | Author: 蓝鸥 | Hits:

[Othertcl-debug.tar

Description: Linux下的tcl语言调试器-under Linux tcl language debugger!
Platform: | Size: 87650 | Author: qwyan456 | Hits:

[Linux-Unixserial debug

Description: linux下的一个串口调试程序的源代码-of a serial debugging program's source code
Platform: | Size: 13312 | Author: 缪志华 | Hits:

[OS Developsrial-debug

Description: Linux 下串口的通讯调试程序C语言编写的源代码-Linux serial communications debugging C-language source code
Platform: | Size: 8192 | Author: 蓝鸥 | Hits:

[Othertcl-debug.tar

Description: Linux下的tcl语言调试器-under Linux tcl language debugger!
Platform: | Size: 88064 | Author: | Hits:

[Internet-Networklinux

Description: 《Linux程序设计权威指南》源代码,包含: awk copyright curses cvs debug framebuffer gnome gnutools gtk i18n kde manual motif network newt qt regexp rpm shell style svgalib system thread xlib ya
Platform: | Size: 4972544 | Author: 林丽娜 | Hits:

[Embeded LinuxLINUX

Description: 飞凌带的linux系统的应用及调试 飞凌带的linux系统的应用及调试 -飞凌the linux system with the application and debugging of the linux system飞凌with the application and debug
Platform: | Size: 2872320 | Author: lang | Hits:

[Embeded LinuxLinux-debug-notes

Description: 一份很实用的linux调试入门笔记,基于FFT-S2410的开发板调试笔记,对初学者很有帮助-A very useful debugging linux notebook entry, based on the FFT-S2410 development board debugging notes, very helpful for beginners
Platform: | Size: 23552 | Author: xia zhongquan | Hits:

[Embeded LinuxLinux

Description: Debugging Linux Applications, good document to debug Linux System
Platform: | Size: 1206272 | Author: hai | Hits:

[Linux-Unixdown-linux

Description: Linux环境下的串口通讯程序,支持嵌入式开发板下载,串口调试-Linux environment serial communication program to support the embedded development board download, serial debug
Platform: | Size: 5120 | Author: zwj | Hits:

[Linux-UnixLinuxdevicedriverdebug

Description: Linux设备驱动程序学习(2)-调试技术 - Linux设备驱动程序.rar-Linux设备驱动程序学习(2)-调试技术- Linux设备驱动程序.rar
Platform: | Size: 53248 | Author: zwx | Hits:

[Linux-Unixdebug

Description: Linux 终端显示的缓冲是有限的(默认的显示几百行),所以如果我们程序printf行数较多,或者程序运行时间较长,难免有一些记录被冲掉,进而影响查看bug。特别是对随机的、少重现错错误,想通过屏幕上printf出来的数据调试,就难免困难一些,当然我们也可以使用重定向实现 程序>log.txt 但是这种方式,打印到文件上便不能显示到屏幕上了,所以有一定的局限性。 于是写了一个程序用意实现。 改程序有以下几个文件 Debug.c Debug.h 改打印log程序可以关闭和打开文件输出、屏幕输出详细说明如下: debug_term_on() //将打印信息输出到屏幕上 debug_term_off() //不将打印信息输出到屏幕上 debug_file_off() //不将打印信息输出到文件中 debug_set_dir( “./log” ) //设置log文件夹 debug_file_on() //将打印信息输出到文件中 - print the log into file
Platform: | Size: 5120 | Author: 璐盟其 | Hits:

[Embeded-SCM Develops3c2440-camera-linux

Description: 基于S3C2410和linux的摄像头程序,调试通过,可以实现摄像头图像采集等功能-Linux on S3C2410 and the camera program, debug through, can achieve functions such as camera image acquisition
Platform: | Size: 535552 | Author: changhui | Hits:

[Shell apiLinux-shell

Description: s h e l l编程最烦人的一项工作是调试问题。有一些方法可以借鉴,但是最好能在问题出现前防止大部分错误,为此应遵循以下规则。 本书简单讲解-The most annoying one shell programming is to debug the problem. There are ways to learn, but the problem is best able to prevent most errors before, this should follow the rules. This book is simple to explain
Platform: | Size: 94208 | Author: 侯晨辉 | Hits:

[JSP/JavaEclipse-debug

Description: 本文概述了怎样使用 Eclipse 平台的内置调试功能来调试您的软件项目。 调试是程序员无法回避的工作。调试方法有许多种,但归根结底,就是找到引发错误的代 码。举例来说,在 Linux 应用程序中,分段故障被认为是最常见的错误之一。当程序尝试 访问未分配给它的内存并因为分段违例而终止时,将产生这种错误。要修正这种错误,您 需要找到引发该行为的那行代码。一旦找到有问题的代码行,这对于知道引发错误的上下 文及其相关的值、变量和方法也是有所帮助的。使用调试器将使查找这些信息变得相当简 单
Platform: | Size: 839680 | Author: dongbeiren | Hits:

[Linux-UnixLinux-shell-V1.0-LZN

Description: Linux下Shell命令解释器,一、 实现功能: 要求实现一个简单的命令解释器,也就是linux中的shell程序,在本程序中我们将其起名为mysh,要求: 1、 能够执行外部程序命令,命令可以带参数; 2、 能够执行fg、bg、cd、history、exit等内部命令; 3、 使用管道和输入输出重定向; 4、 支持前后台作业,提供作业控制功能,包括打印作业的清单,改变当前运行作业的前/后台状态,以及控制作业的挂起、中止与继续运行; 5、 使用Make工具建立工程; 6、 使用调试器gdb来调试程序; -Shell command interpreter under Linux, one Function: called for a simple command interpreter, which is a shell in linux, in this program we will be named mysh, requirements: 1, to execute an external program command command can take arguments 2, to perform fg, bg, cd, history, exit and other internal command 3, the use of input and output redirection and pipes 4, support the front and back operations, provide job control features, including a list of print jobs, change the currently running job before/background status, and control operations hang, suspend and continue to run 5, build the project using the Make utility 6, using the gdb debugger to debug the program
Platform: | Size: 33792 | Author: 张亮 | Hits:

[Embeded LinuxDebug.Hacks-chinese_version

Description: 本书从调试器的基本使用方法、汇编的基础知识开始,到内核错误信息捕捉、应用程序调试、内核调试、本书深入浅出的讲解了linux下应用程序和内核的调试技巧。-This Book from the basic use of the debugger, the compilation of the basics, to the kernel error message capture, application debugging, kernel debugging, the book explain in simple terms under linux applications and kernel debugging skills.
Platform: | Size: 12730368 | Author: 李舒 | Hits:

[Linux-UnixLinux内核调试技术-1_讲义

Description: linux内核调试培训材料(linux kernel debug)
Platform: | Size: 844800 | Author: 老王快跑 | Hits:

[OtherDebug Hacks

Description: debug hacks是一本讲述linux平台下进行debug的书籍,通俗易懂,覆盖面广,适合系统细读,也适合开发过程中查询(debug hacks is a book about debuging on linux platform, it is very easy to read, and cover a lot of debug tricks, you can read it all for good, also you can call for help when met problem)
Platform: | Size: 12933120 | Author: wonghoifung | Hits:
« 12 3 4 5 6 7 8 9 10 ... 15 »

CodeBus www.codebus.net