lockshi.blogspot.com
linux kernel: October 2007
http://lockshi.blogspot.com/2007_10_01_archive.html
Usefull linux kernel commands. Wednesday, October 24, 2007. A nice way to trace a system call is to use the strace command. And: strace -c ls. To get some statistics. Really nice debugging tool for filesystem writer. Monday, October 22, 2007. This is an important topic to discuss the issue of debugging with Linux Kernel. What is the best way to debug the kernel? When facing with a race condition, crash, or freeze that we have no control of? Step through the kernel code using gdb debugger. Using gdb is ha...
lockshi.blogspot.com
linux kernel: ASP .Net Ajax for VS 2005
http://lockshi.blogspot.com/2008/01/asp-net-ajax-for-vs-2005.html
Usefull linux kernel commands. Friday, January 25, 2008. ASP Net Ajax for VS 2005. This section discuss the basic steps to add ajax to your existing asp .net page for VS 2005. Three basic steps to follow:. Download and install ASP .net AJAX extension. Go to http:/ www.asp.net/ajax/downloads/. In the toolbox of VS2005 you should have the AJAX Extensions added. So let's see how to simple ajax behavior to an existing web asp .net page. 2 Add Scriptmanager to the page. Subscribe to: Post Comments (Atom).
lockshi.blogspot.com
linux kernel: MSMQ Multicast with .net
http://lockshi.blogspot.com/2008/03/msmq-multicast-with-net.html
Usefull linux kernel commands. Wednesday, March 19, 2008. MSMQ Multicast with .net. Msmq 3.0 and above supports multicast with PGM. 1 Create a non transactional queue and set the multicast address. 2 Create a publisher. MessageQueue msq = new MessageQueue("formatname:MULTICAST=234.1.1.1:1234");. MsqFormatter = new BinaryMessageFormatter();. 3 Create a consumer. MessageQueue q = new MessageQueue(@". private$ myqueue");. QFormatter = new BinaryMessageFormatter();. Message m = q.Receive();.
lockshi.blogspot.com
linux kernel: Trace system calls
http://lockshi.blogspot.com/2007/10/trace-system-calls.html
Usefull linux kernel commands. Wednesday, October 24, 2007. A nice way to trace a system call is to use the strace command. And: strace -c ls. To get some statistics. Really nice debugging tool for filesystem writer. Subscribe to: Post Comments (Atom). Steve's kernel driver blog. How to get the current kernel version. View my complete profile.
lockshi.blogspot.com
linux kernel: Windows Threading
http://lockshi.blogspot.com/2008/02/windows-threading.html
Usefull linux kernel commands. Tuesday, February 5, 2008. HANDLE CreateThread(LPSECURITY ATTRIBUTES secAttr,. SIZE T stackSize,. LPTHREAD START ROUTINE threadFunc,. Thread can be destroyed by calling CloseHandle(HANDLE );. Or BOOL TerminateThread(HANDLE thread, DWORD status); / no cleanup. VOID ExitThread(DWORD status); / cleanup stacks. The Visual C alternatives to CreateThread and ExitThread are beginthreadex and endthreadex . Both require the header file. DWORD SuspendThread(HANDLE hThread);.
lockshi.blogspot.com
linux kernel: Simple .net BST
http://lockshi.blogspot.com/2008/02/simple-net-bst.html
Usefull linux kernel commands. Tuesday, February 12, 2008. Simple .net BST. Using System.Collections.Generic;. Using System.Text;. Private T data;. LeftNode = null;. RightNode = null;. Data = data;. LeftNode = value;. RightNode = value;. Internal int CompareTo(T val). Return data.CompareTo(val);. Using System.Collections.Generic;. Using System.Text;. Where T : IComparable. RootNode = null;. Public void Insert(T val). RootNode = Insert(rootNode, val);. Node, T val). If (node = null). Node = new Node.
lockshi.blogspot.com
linux kernel: January 2008
http://lockshi.blogspot.com/2008_01_01_archive.html
Usefull linux kernel commands. Friday, January 25, 2008. ASP Net Ajax for VS 2005. This section discuss the basic steps to add ajax to your existing asp .net page for VS 2005. Three basic steps to follow:. Download and install ASP .net AJAX extension. Go to http:/ www.asp.net/ajax/downloads/. In the toolbox of VS2005 you should have the AJAX Extensions added. So let's see how to simple ajax behavior to an existing web asp .net page. 2 Add Scriptmanager to the page. Subscribe to: Posts (Atom).
lockshi.blogspot.com
linux kernel: March 2008
http://lockshi.blogspot.com/2008_03_01_archive.html
Usefull linux kernel commands. Wednesday, March 19, 2008. MSMQ Multicast with .net. Msmq 3.0 and above supports multicast with PGM. 1 Create a non transactional queue and set the multicast address. 2 Create a publisher. MessageQueue msq = new MessageQueue("formatname:MULTICAST=234.1.1.1:1234");. MsqFormatter = new BinaryMessageFormatter();. 3 Create a consumer. MessageQueue q = new MessageQueue(@". private$ myqueue");. QFormatter = new BinaryMessageFormatter();. Message m = q.Receive();.
lockshi.blogspot.com
linux kernel: LINQ by example
http://lockshi.blogspot.com/2008/04/linq-by-example.html
Usefull linux kernel commands. Monday, April 28, 2008. Http:/ msdn2.microsoft.com/en-us/vcsharp/aa336746.aspx. Subscribe to: Post Comments (Atom). Steve's kernel driver blog. View my complete profile.
SOCIAL ENGAGEMENT