start working on shell scripting
Can we manually switch between two Threads of a process ?? Means, is it possible to context out a running thread and context in a user desired thread, at any time????
what is meant by :
#include<stdio.h>
int main( int argc ,char*argv[])
{
}
What happens when a library is statically linked . Does the loader comes in the picture during linking ?
Project 3 : Linux internals/ system programming and Project Status
Harpreet Singh : 1) Successfully implemented IPC using pipes with and without using signals.
2) Successfully implemented IPC using pipes and FIFOs with and without using signals.
Prabhjot Singh : Successfully implemented IPC using :-
1) pipes(Synchronized using Signals)
2) FIFOs and pipes(Synchronised using Signals)
3) Message Queues, FIFOs and Pipes.
Other Team members are requested to please mail there progress in project ASAP as no mails were received.
1 October 2013 (Tuesday)
NAME :: In time to Out time.
1) Rekha Yadav :: 11:00 a.m. to 6:30 p.m.
2) Rahul Singh :: 11:00 a.m. to 7:00 p.m.
3) Puneet S. Bist :: 11:30 a.m. to 6:00p.m.
4) abhishek Bist :: 11:30 a.m. to 4:00 p.m.
5) Kamal :: 10:30 a.m. to 6:00 p.m.
6) Prabhjot Singh :: 10:45 a.m. to 6:00 p.m.
7) Harpreet Singh :: 11:10 a.m. to 6:00 p.m.
Total strength: 7.
Successfully load uImage from tftp server to beaglebone. and bringup the board.
working on searching ,sorting and also on string..
i have done timer with wait_event_interruptible successfully……
#include<stdio.h>
#include<string.h>
void main()
{
char *p=”abcdef”;
p = p + (strlen(p)-1);
printf(“%c\n”,–*p–);
printf(“%c\n”,–*–p);
printf(“%c\n”,–*(p–));
printf(“%c\n”,–*(–p));
printf(“%c\n”,*p);
}
unable to solve the mentioned problem pls help…