Unbounded Priority Inversion Problem with using counting or binary semaphores for controlling access to critical resources is called unbounded priority inversion. Priority inversion occurs when a low-priority task owns a semaphore, and a high-priority task is forced to wait on … Continue reading
Introduction USB Enumeration is the process of detecting, identifying and loading drivers for a USB device.This involves a mixture of hardware techniques for detecting something is present and software to identify what has been connected. The purpose of this article … Continue reading
Successfully implemented Basic Block driver. From registeration to alloc_dsik, add_disk, request and transfer function.Completed documentations also
How can i install flex2bin in my host? I tried but getting error in installiation of the this tooll.
how can i use qsort? and how can i use pragma more efiiciently and what are the set of pragma in gcc as allcomplier has it won set of pragma and hoe can i used pragma in c?
Successfully load uImage from tftp server to beaglebone. and bringup the board.
What is the difference between a deep copy and a shallow copy?
Which code will run faster for(i=0;i<100;i++) for(j=0;j<10;j++) a[i][j]=0; OR for(j=0;j<10;j++) for(i=0;i<100;i++) a[i][j]=0;
done C test paper 2nd and 7th … by doing this learn more new thing….
#include static unsigned char h[5] = {1,2,3,4,5}; int main() { struct ad { unsigned short a; unsigned short b; }; struct ad *it; it = (struct ad *)h; printf(“%d “,it->a); printf(“%d “,it->b); } what will be the output and whyu????
did higl level file i/o assignment
From last two weeks i am working on Character Driver. What is device driver and need of driver? From my knowledge device driver is nothing but piece of code that runs the device . Every device need that code to … Continue reading
Implemented the driver fror n number of byte reading and n number of byte writing. Now going to sleep as provjot sir said today …. go to bed on time. good night. RCS file: lkm.c,v Working file: lkm.c head: 1.17 … Continue reading