Saturday, November 29, 2008
puffy frnz
Sunday, November 2, 2008
blog
Saturday, August 16, 2008
Tuesday, July 15, 2008
Payperpost
Now i think i have got a new exposure in the area of blogging. I think it will be a great experience in reserving the opportunities and earning money through that... payperpost is new, at least new to me, and I think it will be an interesting way to expand my knowledge on various subjects.
The premise is very simple: I can search through topics, do some research and write a post similar to this one detailing what the subject/service/business has to offer. Don’t get me wrong, I’m not going to retire with what I get for doing this, but it will help out.
The money I make from PPP will more than likely go towards keeping this site up and running. I like having a platform allowing people to talk about relevant subjects, but the site does not run on its own. PPP will hopefully cover the monthly costs – a good thing for all of us.
I heard about PPP while browsing looking for basically nothing. I have found some of the most interesting things just looking around and this is another one of those times.
One of the most surprising things about different sites on the internet is the people available to meet and network with. Facebook, Twitter, Pownce, Friendfeed and now PPP are all places where you can meet people in all walks of life and I look forward to getting to know some people in the PPP community.
Saturday, July 12, 2008
TLB and arm stickness
If one or a few processes have a high access rate to data on one track of a storage disk, then they may monopolize the device by repeated requests to that track. This generally happens with most common device scheduling algorithms (LIFO, SSTF, C-SCAN, etc). High-density multisurface disks are more likely to be affected by this than low density ones.
Friday, July 11, 2008
Buddy system of memory allocation
Wednesday, July 9, 2008
demand- and pre-paging,placement and replacement algorithms,latency, transfer and seek time with respect to disk I/O:
Placement algorithms determine where in available real-memory to load a program. Common methods are first-fit, next-fit, best-fit. Replacement algorithms are used when memory is full, and one process (or part of a process) needs to be swapped out to accommodate a new program. The replacement algorithm determines which are the partitions to be swapped out.
Seek time is the time required to move the disk arm to the required track. Rotational delay or latency is the time it takes for the beginning of the required sector to reach the head. Sum of seek time (if any) and latency is the access time. Time taken to actually transfer a span of data is transfer time.
Sunday, July 6, 2008
concept of binary semaphore,thrashing,turnaround time and response time:
Thrashing is a phenomenon in virtual memory schemes when the processor spends most of its time swapping pages, rather than executing instructions. This is due to an inordinate number of page faults.
Turnaround time is the interval between the submission of a job and its completion. Response time is the interval between submission of a request, and the first response to that request.
Wednesday, July 2, 2008
Time stamping and cycle stealing:
We encounter cycle stealing in the context of Direct Memory Access (DMA). Either the DMA controller can use the data bus when the CPU does not need it, or it may force the CPU to temporarily suspend operation. The latter technique is called cycle stealing. Note that cycle stealing can be done only at specific break points in an instruction cycle.
Wednesday, June 25, 2008
Popular multiprocessor thread-scheduling strategies.
Dedicated processor assignment: Provides implicit scheduling defined by assignment of threads to processors. For the duration of program execution, each program is allocated a set of processors equal in number to the number of threads in the program. Processors are chosen from the available pool.
Dynamic scheduling: The number of thread in a program can be altered during the course of execution.
Tuesday, June 24, 2008
A must know concept
Long term scheduler determines which programs are admitted to the system for processing. It controls the degree of multiprogramming. Once admitted, a job becomes a process.
Medium term scheduling is part of the swapping function. This relates to processes that are in a blocked or suspended state. They are swapped out of real-memory until they are ready to execute. The swapping-in decision is based on memory-management criteria.
Short term scheduler, also know as a dispatcher executes most frequently, and makes the finest-grained decision of which process should execute next. This scheduler is invoked whenever an event occurs. It may lead to interruption of one process by preemption.
Friday, June 20, 2008
Belady's Anomaly
Tuesday, June 17, 2008
Dead lock:The easiest concept in operating system
*Mutual Exclusion: Only one process may use a critical resource at a time.
*Hold & Wait: A process may be allocated some resources while waiting for others.
*No Pre-emption: No resource can be forcible removed from a process holding it.
*Circular Wait: A closed chain of processes exist such that each process holds at least one resource needed by another process in the chain.
Deadlocks can be avoided and also prevented.
Monday, June 16, 2008
Some concepts:reentrancy
It is a useful, memory-saving technique for multiprogrammed timesharing systems. A Reentrant Procedure is one in which multiple users can share a single copy of a program during the same period. Reentrancy has 2 key aspects: The program code cannot modify itself, and the local data for each user process must be stored separately. Thus, the permanent part is the code, and the temporary part is the pointer back to the calling program and local variables used by that program. Each execution instance is called activation. It executes the code in the permanent part, but has its own copy of local variables/parameters. The temporary part associated with each activation is the activation record. Generally, the activation record is kept on the stack.
Note: A reentrant procedure can be interrupted and called by an interrupting program, and still execute correctly on returning to the procedure.