Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Terminate and Stay Resident


Related Topics

  
  Encyclopedia: Terminate and Stay Resident   (Site not responding. Last check: 2007-10-22)
Terminate and Stay Resident (TSR) computer programs were the only way to achieve a primitive sort of multitasking (usually just task-switching) using the DOS operating system.
The TSR has now disappeared completely, as multitasking operating systems such as Windows XP, Mac OS, and Linux provide the facilities for multiple programs to run simultaneously without the need for special programming tricks, and the modern notion of protected memory makes it unthinkable that an application should be able to modify an interrupt table.
Terminate and Stay Resident (TSR) computer program s were the only way to achieve a primitive sort of multitasking using the DOS operating system.
www.nationmaster.com /encyclopedia/Terminate-and-Stay-Resident   (2062 words)

  
 TSR - Terminate and Stay Resident
Terminate and Stay Resident Refers to a program that remains in memory when the user exits it in order that it be immediately available at the press of a hotkey.
TSR viruses usually design a method by which they are put into memory when the computer is booted, and then run until the computer is shut down.
Terminate and Stay Resident, a term used for programs that run and then stay in memory for instant use later, a Mouse driver or a Network driver are examples
www.auditmypc.com /acronym/TSR.asp   (719 words)

  
 The Old Joel on Software Forum - Obscure DOS question
TSR terminal emulators toggled by an odd key combination such as sharing a box with WP or Visicalc with block cut/paste between the two.
TSR to watch the video buffer and keyboard to catch words on input, spell-check, and popup suggestions or ring a bell (maybe not so popular).
TSRs usually intercepted (and therefore changed) some interrupts, usually the keyboard and the timer -- that would be the only way for them to get the control flow.
discuss.fogcreek.com /joelonsoftware?cmd=show&ixPost=162221   (1084 words)

  
 CHAPTER EIGHTEEN: RESIDENT PROGRAMS (Part 1)
Resident programs also known as terminate and stay resident programs or TSRs provide a tiny amount of multitasking to an otherwise single tasking operating system.
MS-DOS provides a second termination call which is identical to the terminate call with one exception it does not reset the free memory pointer to reclaim all the memory in use by the application.
Upon entry the resident routine may specify that certain registers contain various parameters but one thing you cannot expect is for the calling code to properly set up the segment registers for you.
www.oopweb.com /Assembly/Documents/ArtOfAssembly/Volume/Chapter_18/CH18-1.html   (1769 words)

  
 Terminate and Stay Resident   (Site not responding. Last check: 2007-10-22)
Terminate means the program loads into memory and then immedialtely terminates.
Stay Resident means the program does not exit when it terminates.
TSR technology has the advantage of allowing one program to pop up (activate) on top of another progam (screen).
www.gopcc.com /tsr.htm   (154 words)

  
 terminate - definition by dict.die.net
To set a term or limit to; to form the extreme point or side of; to bound; to limit; as, to terminate a surface by a line.
During this interval of calm and prosperity, he [Michael Angelo] terminated two figures of slaves, destined for the tomb, in an incomparable style of art.
To be limited in space by a point, line, or surface; to stop short; to end; to cease; as, the torrid zone terminates at the tropics.
dict.die.net /terminate   (133 words)

  
 1527 - TSR, Terminate and Stay Resident   (Site not responding. Last check: 2007-10-22)
TSR stands for "Terminate and Stay Resident." Most software programs run and then shut down completely, either automatically when they are finished running, or when the user chooses the Close or Exit option.
A TSR is a program which continues to run in the background, while returning the user to the command line, allowing the user to run other additional programs.
TSRs are used for many things, from providing support for your hardware devices, to pop-up accessories like calculators or notepads that you can access with special keypresses while you are running other programs.
www.linct.org /cur/NewDeal/HOTTIPS/1527.htm   (2204 words)

  
 Terminate and Stay Resident Programming
Terminate and Stay Resident (TSR) programming is one of the most interesting services provided by MS-DOS.
Then when you load the TSR, first check to see if this string of characters is at this location in the current interrupt handler.
Now once the TSR is installed, the hook to INT 1Ch will check the flag that we have set and either "stop" the speaker, or skip it.
www.frontiernet.net /~fys/tsrdemo.htm   (1935 words)

  
 Ter from FOLDOC
A Terminal Adaptor is typically packaged like a modem, either as a stand-alone unit or as an interface card that plugs into a computer or other communications equipment (such as a router or PBX).
Evaluation of a constant is bound to terminate, as is evaluation of a non-recursive function applied to arguments which are either not evaluated or which can themselves be proved to terminate.
Termination analysis can never guarantee to give the correct answer because this would be equivalent to solving the halting problem so the answer it gives is either "definitely terminates" or "don't know".
foldoc.org /?query=Ter   (1959 words)

  
 Baywalk - Technology Dock - PC Support Archive - Terminate and Stay Resident Software (TSR's) - March 1992
The resident program will generally display the fact that it is resident and show a "hot key" to activate it again.
If the resident program wasn't interested in that particular keyboard action or keystroke, it could simply pass control along to the place where the pointer had been pointing before just as if it hadn't been eavesdropping at all!
However, if the key action happened to be this resident program's assigned "hot key", it could retain control of the system as long as it wished, before passing it along as if nothing at all had happened!
www.baywalk.com /it/pcsupport/terminate_and_stay_resident_software.htm   (1800 words)

  
 terminate-and-stay-resident program   (Site not responding. Last check: 2007-10-22)
A small accessory or utility program that stays loaded in memory, even when it is not actually running.
A TSR can be invoked quickly to perform a specific task.
TSR's are often used with single-tasking operating systems such as MS-DOS.
www.coffeycountyks.org /Terms/2461HTML-2826.html   (40 words)

  
 Computers in Libraries: Everything is a TSR: memory-resident programs and Windows. (Terminate and Stay Resident ...   (Site not responding. Last check: 2007-10-22)
Terminate and Stay Resident (TSR) is another term for memory-resident programs.
TSR is just what its name suggests: a RAM-loaded applications program that is self-terminating, but functional - even while another program is running.
Tips on using TSRs to preserve memory in a Windows environment are presented.
www.highbeam.com /library/doc0.asp?docid=1G1:13813551&refid=ink_d7   (215 words)

  
 CHAPTER THIRTEEN: MS-DOS, PC-BIOS AND FILE I/O (Part 5)
There are three[5] functions of general interest- program termination, terminate and stay resident, and execute a program.
This function also terminates program execution, but upon returning to DOS, the memory in use by the process is not returned to the DOS free memory pool.
Most TSRs patch into one of the interrupt vectors (such as a keyboard, printer, or serial interrupt vector) in order to restart whenever some hardware related event occurs (such as when a key is pressed).
www.arl.wustl.edu /~lockwood/class/cs306/books/artofasm/Chapter_13/CH13-5.html   (2610 words)

  
 TSR Programming Tutorial @ Amit Online Resource Center   (Site not responding. Last check: 2007-10-22)
TSR which give programming in C and C++ a Big and Wide Diversion and opens a new world of Hackers and Crackers and normal programmers.
Likewise if you wanna popup TSR after every 2 minutes we have to capture Timer interrupt or if you wanna make TSR active when any reading or writing on hard disk is done you have to capture that interrupt which governs the task.
TSR programs must be compiled in a small memory model with stack checking turned off.
amitmathur.8m.com /resources/article4.html   (1131 words)

  
 Tutorials - Resident Virii Writers' Tutorial   (Site not responding. Last check: 2007-10-22)
Resident program passes control to DOS at the end of its execution, but leaves itself in memory whole or partially.
TSR stays in memory to have some control over the processes.
When TSR virus starts from file, its main task is to establish control in memory.
www.madchat.org /vxdevl/vdat/tuloving.htm   (2013 words)

  
 terminate and stay resident - a Whatis.com definition - see also: TSR
TSR programs are used in Disk Operating Systems and perhaps other non-task operating systems.
TSR programs typically include calculators, clocks, and notepads.
Find white papers, products and vendors related to terminate and stay resident.
searchsmb.techtarget.com /sDefinition/0,,sid44_gci214183,00.html   (189 words)

  
 Silicon Fusion >> News >> Evil: Terminate stay Resident.
Resident Evil once more graces our small screen, bringing more action and destruction to the GameCube.
One problem the residents are psychotically insane and are for the most part human.
One element that does remain is the search for clues, find items, use items control method that is familiar however it can now be played in either first person or as indications have it an over the shoulder-cam type style.
www.silicon-fusion.com /news/1689   (329 words)

  
 Filebasket - Utilities/Drivers/System Files › Terminate and stay resident utilities   (Site not responding. Last check: 2007-10-22)
Removes one or more TSR (terminate and stay resident) programs that have no un-install function.
Restores all changed vectors and releases ("frees") conventional memory used by the TSR program/s.
Resinfo v2.0 is a resident program that shows a description in the last row.
www.filebasket.com /category.php[id]293[SiteID]filebasket   (275 words)

  
 TSR
Short for Terminate-and-stay-resident a TSR is a software program that remains in memory until it is needed then performs some function.
An good example of a TSR is a Virus Scanner, which must remain loaded in memory to help protect your computer from computer viruses.
See document CHTSR for additional information about Windows TSR's as well as how to remove them or temporarily disable them.
www.computerhope.com /jargon/t/tsr.htm   (75 words)

  
 Terminate-and-Stay-Resident (TSR) Program Example (28568)   (Site not responding. Last check: 2007-10-22)
The following code example demonstrates using Microsoft C to write a terminate-and-stay-resident (TSR) program.
*/ /* */ /***************************************/ _dos_keep(0, _get_memsize()); printf ("DirZap is now memory resident"); /* Inform the user */ } void cdecl interrupt far set_dir(REGPAK) { /********************************************************************/ /* */ /* DS:DX points to the string entered by the user for MkDir, RmDir */ /* and ChDir.
This function makes that string null so that */ /* the user will no longer be able to make, remove, or change */ /* directories.
www.it-faq.pl /mskb/28/568.HTM   (568 words)

  
 McAfee Inc.
Interrupt F8 is hooked by the Terminate-and-Stay Resident (TSR), with other interrupts directly hooked by the virus that do not appear as hooked with memory mapping utilities.
When the first Pisello infected program is executed, the Pisello virus will install itself memory resident as a low system memory TSR of 2,112 bytes.
Interrupt F8 will be hooked by the TSR, with other interrupts directly hooked by the virus that will not appear as hooked with memory mapping utilities.
vil.nai.com /vil/content/Print943.htm   (507 words)

  
 jGuru: Terminate and Stay Resident Java programs using Threads   (Site not responding. Last check: 2007-10-22)
I want the java application to terminate and the thread to keep performing this actvity at regular intervals of time.
Running it as a service might be difficult as this is not on the same box as the database, But yes as you said that is an option too.
My current setup is a IIS Server, One SQL Db and a remote terminal from where i can access both.
www.magelang.com /forums/view.jsp?EID=1132401   (452 words)

  
 Closing TSRs   (Site not responding. Last check: 2007-10-22)
These programs start when first turning on the computer, and they stay in memory, ready for use, even if they are not active on the screen.
The computer can be started without loading TSR programs.
You will be asked to confirm each line by pressing Y to invoke the line or N to bypass it.
web.intuit.com /support/quicken/docs/d_tsrs.html   (189 words)

  
 McAfee Security - Security HQ   (Site not responding. Last check: 2007-10-22)
An additional Terminate-and-Stay Resident (TSR) of 3,712 bytes is installed, though it does not hooked any interrupts.
The first time a program infected with the Criminal virus is executed, the Criminal virus will install itself memory resident as a low system memory TSR of 480 bytes.
An additional TSR of 3,712 bytes will also be installed, though it will not have hooked any interrupts.
hq.mcafeeasap.com /dispVirus.asp?virus_k=316   (568 words)

  
 terminate and stay resident: December2004 Archives   (Site not responding. Last check: 2007-10-22)
dew stay reckless stirrup kilogram curl boundless claw jingoism.
stay resident slide cold blooded compress volubility seminal impetuous fourscore flesh.
breeches spinal sworn hoist stay son thrum buxom sectarian.
stayresident.xpressed.org /archives/monthly/2004-12.html   (2793 words)

  
 A TSR CLOCK. - Terminate but Stay Resident (TSR) Source Code in C
is a Terminate but Stay Resident (TSR) source code in C programming language.
Home » C Home » Terminate but Stay Resident (TSR) Home » A TSR CLOCK.
This is the TSR clock in c language.
www.sourcecodesworld.com /source/show.asp?ScriptID=809   (420 words)

  
 AntiOnline - Terminate and Stay Resident programs
The books were written for C and I couldn't find any book for writing TSRs in C++.
TSRs are the 'old' way to get more then 1 program running.
By using a TSR you could run something in the background.
www.antionline.com /showthread.php?threadid=248041   (652 words)

  
 XoftWare For Windows 8.0 User's Guide Appendix A
All connection types under XoftWare that are supported by a TSR network module require the TSR to be loaded prior to running Microsoft Windows and XoftWare.
Directs the TSR to unload itself and release the memory it was previously consuming.
Directs the TSR to load itself at a specific interrupt vector.
supportweb.netmanage.com /ts_viewnow/downloads/xoftware8/appa.asp   (1083 words)

  
 Differences between COMMAND /C and CALL
When you exit from the command shell, the memory used by COMMAND.COM is freed, but the memory used for the TSR program is not.
Hence, system memory becomes fragmented; there is memory allocated for TSR programs located in the middle of free memory.
Therefore, if a TSR program is loaded, it is loaded at the bottom of memory, just above the resident portion of COMMAND.COM; all free memory remains in a single, contiguous block, which makes it easier for MS-DOS to work.
support.microsoft.com /?kbid=34768   (198 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.