An operating System (OS) is a basic software whose rule is to intermediate software requisitions for resources and the hardware available, manage input/output, memory allocation/deallocation, file systems, among other basic tasks a device (not necessarily a computer) should do.

learn more… | top users | synonyms (2)

1
vote
1answer
24 views

order of execution of forked processes

#include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<sys/sem.h> #include<sys/ipc.h> int sem_id; void update_file(int number) { struct sembuf sem_op; ...
1
vote
1answer
67 views

Communication between processes with pipes

I'm trying to implement a program which take a sequence of parameter in the input and depending in that it create an equal number of processes implemented by pipes ,where each process write in the ...
-2
votes
1answer
57 views

What are unique information avaiable in computer [closed]

In general every one know unique items is MAC (Physical Address), but i saw some software which change computer physical address. Our products are used by N number of customers, now i want to know ...
0
votes
1answer
59 views

Install WinCe 6.0 os on vortex86 based device

I need to install WinCe 6.0 on Vortex86 device and then write application to it. I used Platform Builder and built OS based on Vortex86 BSP. How can I install it on my Vortex based device? (It has ...
2
votes
1answer
116 views

C call back function from assembly (x86) and process switching

This code is for my undergraduate OS course. I am trying to call a function on the same stack of new_sp and then return to whatever new_sp was doing. It is not working and I'm not even sure how to ...
2
votes
3answers
69 views

Pushing code towards kernel or user space, for performance reasons?

Originally I thought to make code faster it would be better to try and reduce the transition between Kernel and user space- by pushing more of the code to run in the kernel. However, I have read in a ...
0
votes
0answers
27 views

Detect OS by HID device

I have a HID keyboard stack on my microcontroller, I have a question, whether HID device after plug-in obtains some information about operating system it is connected to?
-3
votes
2answers
22 views

How does the operating system know which application to send the mouse event to? [closed]

Because there could possibly be so many windows open at different spots. Some windows are active some are not, how does the OS delegate the mouse event based on where the application window is? I'm a ...
1
vote
2answers
147 views

A lightweight Linux version for web development? [closed]

I am fairly of familiar with Ubuntu and I have used it a lot in the past for programming purposes, but right now I would like to try something different. Instead of doing a dual boot on my computer, I ...
0
votes
1answer
36 views

Shared code logical address in process address space

In "Operating Systems Concepts" book of Silberchatz , it says "Shared code must appear in same location in the logical address space of all processes" , Why does it have to appear in same location ...
0
votes
0answers
34 views

prevent scrolling of webpage in touchscreen when touching canvas element

I am making a firefox os app in html5. I am using canvas and I want to stop the scrolling of the page when the user drags in the canvas element. I have tried e.preventDefault() function but still it ...
0
votes
1answer
47 views

N command pipe “ Inter-process ”

I have successfully piped the output of one command by using one pipe . I want to do this with N successive commands where each command represent a process . This is my attempt at pipelining one ...
0
votes
1answer
112 views

Installing Rmagick issues in Mac OS X lion

Problem: Fetching: rmagick-2.13.2.gem (100%) Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. ...
0
votes
0answers
27 views

using execvp to start a executable of another C program

I get the name of the executable in argv[3] and I put ./ in front of it like this: const char * nume_prog = argv[3]; char* name = malloc(256); if(name == NULL){ fprintf(stderr,"malloc failed ...
3
votes
0answers
130 views

fopen reading from a variable

I have been working on this operating system project using a FAT-12 file system. Recently I went to make it so that each command was running of the same disk. To do this i just added a string to ...
7
votes
2answers
145 views

Cache behaviour of memory-mapped I/O

Does anyone know which type of CPU cache behaviour (e.g. uncacheable write-combining) is assigned to file-backed, memory-mapped I/O on modern x86 systems? Is there any way to detect which is the ...
1
vote
3answers
300 views

Difference between physical/logical/virtual memory address

I am a little confused about the terms physical/logical/virtual addresses in an Operating System(I use Linux- open SUSE) Here is what I understand: Physical Address- When the processor is in system ...
-3
votes
1answer
43 views

how processes work in operating systems and in the cpu [closed]

i read about process scheduling. i understood that when a procces is created there is a procces control block created for it but i didn't understand entirly how it works. when the PCB is created where ...
0
votes
0answers
16 views

Cannot switch between between 2 operating systems [closed]

Guyz...I've installed two OS i.e. Win 8 and a Debian distro. The problem here arises that whenever I start my laptop, it directly loads Windows 8 and I'm not able to select the Debian one. How do I ...
0
votes
3answers
74 views

How to search for a file in a FAT12 system in Assembly

Currently, I've been following the BrokenThorn Series on OS Dev, and I've run into a bit of a problem. Right now, as a part of my journey through the tutorial, I'm currently coding the part that loads ...
0
votes
1answer
90 views

Converting a Virtual Address to a Physical Address

I am doing an OS course in college and I don't understand something I found in the slides for the course: Consider a VM System with the following page table. The page size is 1KB. Frame Valid ...
1
vote
0answers
46 views

Virtual Address Translation Tips

I am preparing for an OS exam and I came across the following exercise: You're given a 16-bit big-endian system. It supports memory management with a one-level page table. Page size is 1KByte. The ...
0
votes
2answers
311 views

Android 4.2 introduced SELinux enabled by default on kernel

As I have understood correctly, Android 4.2 introduced SELinux enabled by default on kernel. am I right? Is there anyway to disable it? There are some of the apps might not work correctly. Ex. ...
1
vote
1answer
41 views

Why there are many page fault during full GC

It is Window 2003 server. We are running some performance test, and what we see is: In first 5 hours, the page fault/sec is very small, like 10 or 20 In the last 1 hour, the page fault jumps to 500 ...
2
votes
1answer
78 views

list of files safe to ignore

I'm working on a WebDAV-server which presents information from a database in a virtual filesystem. So the user is able to create files on the server and they are automagically created back in the db. ...
1
vote
1answer
47 views

Javascript - Retrieve OS Date formatting

Hmmm... Okay so I've been searching the web for 2 days now without any luck. I've seen a lot of answers on how to format a javascript date for example new Date().toString("yyyy-MM-dd")... Which would ...
0
votes
0answers
85 views

Open link in a new tab webview?

I have this code that makes all links open in the same window, but when I have a link to target_blank crashes and does not open any site. As I can run the target_blank? package com.android.m2s; ...
1
vote
1answer
106 views

How to continuously show os command output in erlang?

I need continuously show stdout/stderr from os command in erlang. In ruby I can implement it with following code: s1, s2 , s3, t = Open3.popen3('for %a in (1 2 3 4 5 6 7 8 9) do (echo message & ...
1
vote
2answers
106 views

The programming language interactions with operating systems

This is a Computer Science question about programming languages and operating systems. My question is, what are the basic interactions between a programming language and operating systems? I do have ...
0
votes
2answers
415 views

Shortest Job First Scheduling

Suppose that following processes arrive for the execution at the times indicated. Each process will run the listed amount of time. Process [Arrival Time(ms) , Burst Time(ms)] A[0 , 5] , B[3 , 5] , ...
-1
votes
1answer
38 views

32/64 bit OS/processor [closed]

32/64 bit processor means instruction size is 32/64 bit. What does 32/64 bit Operating System mean? what are the advantages of using 64bit OS over 32bit OS.?
0
votes
1answer
64 views

Application running in Windows Vista context by default

I am testing my desktop application on a Windows 8 machine and I noticed there is a new column in the Task Manager details view called "Operating system context". This shows my application running ...
1
vote
1answer
87 views

Shell script process is getting killed automatically

I am facing problem with shell script i have ascript which will be running in infinite loop so say its havin PID X.The process is running for 4-5 hours but automatically the process getting ...
0
votes
1answer
75 views

How can I know the operating system of a device

If I know the device's model or vendor. Is there any direct way by which I can know the operating system of this device (e.g through the device driver or something like that? ). For example, I will ...
1
vote
1answer
148 views

How to implement a Linux Device Driver for Data Acquisition Hardware?

I am developing an acquisition device which requires DMA operation to transfer large data frames to the main memory. For now I am assuming the destination is a contiguous memory region so I am ...
5
votes
1answer
51 views

Understanding os bootloading - assembly

I am trying to go more indepth os understanding. So, the linux boot has to deal with an assembly file. I know about mov, push, pop, but here I am quite lost with this : .globl __start .ent ...
0
votes
0answers
33 views

Detecting System Time Edits

I want to know whether system time in Mac OS X is changed by the user or not ? Is there any way to detect it? A Java solution would be preferred, but I will accept any. Actually, I need to reset a ...
0
votes
0answers
31 views

An exercise about Real Time System

(a) The execution times of the jobs in the precedence graph in Figure 4P–2 are all equal to 1, and their release times are identical. Give a nonpreemptive optimal schedule that minimizes the ...
0
votes
1answer
931 views

Fatal error: Failed to write core dump

I'm trying to run the unit tests in the tess4j distribution currently. And while running one of the unit tests, java crashed with the following error: TessBaseAPIGetIterator # # A fatal error has ...
0
votes
3answers
86 views

contiguously space on hard disk - NTFS

My question is about file allocation methods on NTFS Fs. I have two main questions - When i create a file on NTFS, is it stored contiguously on the physical hard disk? if not - is there a way to ...
1
vote
1answer
38 views

System Variable missing for QTP?

Anyone ever had this problem - I open QTP on my Primary machine and it tells me the resources are missing. This is odd since all QTP files are stored on a central file server. If I correct this it ...
0
votes
0answers
12 views

How to connect button from custom cell to action to know index of cell which belongs?

In custom tableview cell I have couple UILabels and one UIButton, I find UIButton like UIButton* temp=(UIButton *)[cell viewWithTag:300]; inside - (UITableViewCell *)tableView:(UITableView ...
0
votes
2answers
111 views

Size of a Word and addressing

I was refreshing myself on memory information and I am confused on the size of a Word. From my understanding, a Word is not a universally defined size, but is a size defined by the specific system (in ...
0
votes
1answer
36 views

Checking if path ends in separation

I'm setting up a small script to merge PDFs in a folder that has a cover letter, resume, and references. I'm wondering if there's a Python method that can look at the path string and detect if it ends ...
0
votes
2answers
69 views

Reading memory pointed by register with GDB

Is there a way to look at memory content from GDB if I know the memory location. That is I'm debugging a x86 assembly program I written for my Operating Systems Course. What I'm trying to do is to ...
0
votes
0answers
34 views

How to determine which activation method should work for Windows 7 OEM installation? [closed]

How to define activation method that will work with OEM installation of windows 7? In some cases activation via Internet not work, in that case should be used activation by phone method, this depend ...
0
votes
0answers
38 views

Usage of Ti.UI.Tray

Can Someone explain me what Ti.UI.Tray is for? I want to create a system tray application that displays notifications on update and when the user closes the window it goes into system tray instead of ...
-1
votes
1answer
71 views

Detecting OS (XP vs 7)

Yes, I've heard a million times that there is no reason to want to detect OS, but I'm getting different behaviors on both Firefox and Chrome between Windows XP and the exact same browser version on ...
0
votes
2answers
78 views

clusters, pages, sectors in FAT file system

Im trying to understand the concept of a "cluster" in a FAT filesystem. Specifically what is the relationship between a cluster, a Block, A Sector. My understanding is the following 1) A ...
1
vote
1answer
57 views

Open file with path needing character escaping in Go

I have a file which os.open() gives me back, no such file or directory. Is there a function which can escape a file name for getting the correct path to it? Something similar to the net package ...

1 3 4 5 6 7 72