Sponsored Content
Full Discussion: Does unix use interrupts?
Special Forums Hardware Filesystems, Disks and Memory Does unix use interrupts? Post 28262 by auswipe on Monday 16th of September 2002 11:21:02 AM
Old 09-16-2002
Re: Does unix use interrupts?

Quote:
Originally posted by Frank_M
I'm a freshman here and I have a simple question.
Does unix use interrupts which is like Dos? Are they the same?
Thx.Smilie
Are you talking about Interrupts like Int 21h in Assembly programming? That's hardware dependent.

A google search for NASM would probably yield good results for Assembly language development under x86 and possbily other architectures.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

catching interrupts

hey i have been facing a problem,can you tell me if we can catch ctrl d in unix i have tried and sucessfully catched and disabled ctrl-c and ctrl -z but am not sure if we can do the same for CTRL-D, so got any clue mail on he forum or ...i mean c programming in Unix thats what i am working on (1 Reply)
Discussion started by: toughguy2handle
1 Replies

2. UNIX for Advanced & Expert Users

Interrupts problems

Hi, My machine is a Unixware 7.1.3 is a files server, and I had never problem with that machine, but since two days, the machine presents slows problems, i think that the problem is te device interrupts, I had checked all and I dont found it any problem. Any idea? Thanks, (sorry my... (2 Replies)
Discussion started by: By_Jam
2 Replies

3. UNIX for Dummies Questions & Answers

Traps and Interrupts

Well, I don't know where exactly to ask this doubt so I'm asking in the newbie section. I was reading about traps and interrupts when I thought of traps as something that cease the control of the OS from the user and interrupts that cease the control yet provide support for multitasking. Am I right... (3 Replies)
Discussion started by: Legend986
3 Replies

4. Linux

how to determine which interrupts enable and which desable?

hi all. How can i determine which interrupts are enabled in my machine (x86). I mean how can i access information about this through my pic/apic, or how can i see, which interrupt enable? Maybe i can do it through /proc, or /sys? I writing driver and i think, that i incorrect initialize it,... (0 Replies)
Discussion started by: kolya
0 Replies

5. UNIX for Dummies Questions & Answers

about concept of Interrupts.

Hi all, I am new here ,i want to know about interrupts in detail.What r Interrupts .how they r handeled. Thanx in adavnce. (1 Reply)
Discussion started by: vishwasrao
1 Replies

6. Programming

SIGCHLD interrupts its own handler

Hi. I have a program whose job it is to manage 15 child processes. Sometimes these children die (sometimes deliberately other times with a SEGV). This causes a SIGCHLD to be sent to my program which uses waitpid() in the signal handler to gather information and, in most cases, restart the child.... (3 Replies)
Discussion started by: jrichemont
3 Replies

7. Linux

Convert ssRawInterrupts into Interrupts Per Sec

am doing performance monitoring to our server through snmp. i need to convert the interrupts raw value (ssRawInterrupts) in UCD-SNMP-MIB to per sec (Interrupts/Sec). What is the exact formula to find the above one. Guide me please. Thanks in advance. (1 Reply)
Discussion started by: maruthu
1 Replies

8. Infrastructure Monitoring

CPU - Interrupts distribution

Hi Gurus, I have a situation runing my ETL tools on the below server. The throughput while processing data is coming very low. When i tried to analyse the CPU stats i got colleceted the mpstat. Server Physical Host Name *********com IP**.***.** OS Type Linux OS Classlinux red hat... (3 Replies)
Discussion started by: r_t_1601
3 Replies

9. UNIX for Dummies Questions & Answers

Do UNIX signals produce interrupts?

Hi folks! I have been reading Vahalia's Unix Internals book, which states the following in the chapter dedicated to signals: Given that, my understanding is that processes running in user mode don't become aware of signals until they switch to kernel mode, where the issig() function is called... (3 Replies)
Discussion started by: Tru69
3 Replies
Bio::Tools::Run::Minimo(3pm)				User Contributed Perl Documentation			      Bio::Tools::Run::Minimo(3pm)

NAME
Bio::Tools::Run::Minimo - Wrapper for local execution of the Minimo assembler SYNOPSIS
use Bio::Tools::Run::Minimo; # Run Minmo using an input FASTA file my $factory = Bio::Tools::Run::Minimo->new( -minimum_overlap_length => 35 ); my $asm_obj = $factory->run($fasta_file, $qual_file); # An assembly object is returned by default for my $contig ($assembly->all_contigs) { ... do something ... } # Read some sequences use Bio::SeqIO; my $sio = Bio::SeqIO->new(-file => $fasta_file, -format => 'fasta'); my @seqs; while (my $seq = $sio->next_seq()) { push @seqs,$seq; } # Run Minimo using input sequence objects and returning an assembly file my $asm_file = 'results.ace'; $factory->out_type($asm_file); $factory->run(@seqs); DESCRIPTION
Wrapper module for the local execution of the DNA assembly program Minimo. Minimo is based on AMOS (http://sourceforge.net/apps/mediawiki/amos/) and implements the same conservative assembly algorithm as Minimus (http://sourceforge.net/apps/mediawiki/amos/index.php?title=Minimus). FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: http://redmine.open-bio.org/projects/bioperl/ AUTHOR - Florent E Angly Email: florent-dot-angly-at-gmail-dot-com APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : $assembler->new( -min_len => 50, -min_ident => 95 ); Function: Creates a Minimo factory Returns : A Bio::Tools::Run::Minimo object Args : Minimo options available in this module: qual_in Input quality score file good_qual Quality score to set for bases within the clear range if no quality file was given (default: 30) bad_qual Quality score to set for bases outside clear range if no quality file was given (default: 10). If your sequences are trimmed, try the same value as GOOD_QUAL. min_len / minimum_overlap_length Minimum contig overlap length (between 20 and 100 bp, default: 35) min_ident / minimum_overlap_similarity Minimum contig overlap identity percentage (between 0 and 100 %, default: 98) aln_wiggle Alignment wiggle value when determining the consensus sequence (default: 2 bp) out_prefix Prefix to use for the output file path and name out_type Title : out_type Usage : $factory->out_type('Bio::Assembly::ScaffoldI') Function: Get/set the desired type of output Returns : The type of results to return Args : Desired type of results to return (optional): 'Bio::Assembly::IO' object 'Bio::Assembly::ScaffoldI' object (default) The name of a file to save the results in run Title : run Usage : $factory->run($fasta_file); Function: Run TIGR Assembler Returns : - a Bio::Assembly::ScaffoldI object, a Bio::Assembly::IO object, a filename, or undef if all sequences were too small to be usable Returns : Assembly results (file, IO object or assembly object) Args : - sequence input (FASTA file or sequence object arrayref) - optional quality score input (QUAL file or quality score object arrayref) _run Title : _run Usage : $factory->_run() Function: Make a system call and run TIGR Assembler Returns : An assembly file Args : - FASTA file - optional QUAL file _clean_file Title : _clean_file Usage : $factory->_clean_file($file) Function: Clean file in place by removing NULL characters. NULL characters can be present in the output files of AMOS 2.0.8 but they do not validate as proper sequence characters in Bioperl. Returns : 1 for success Args : Filename perl v5.12.3 2011-06-18 Bio::Tools::Run::Minimo(3pm)
All times are GMT -4. The time now is 05:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy