Ask a Question related to Mac Applications & Software, Design and Development.
-
Quackers #1
Multiple copies of application open...
What are the pros and cons of having more than one copy of an
application open?
Being a long-time Mac user, I'm used to having only one copy open at a
time. But I notice that several apps in Windows can have multiple
copies open simultaneously. The latter seems weird, but is it poor
programming, or are there advantages?
We are developing a Java application that currently can have several
copies open at once, and I'm inclined to say this shouldn't happen.
Thanks,
Q
Quackers Guest
-
Unable to print multiple copies
You can try to reset your printer subsystem. (Desperate, but worth a try) Mike -
Printing Multiple Copies
I need to print multiple copies of a PDF. I cannot send the job to the printer x times because we may print say 100 copies of the same thing, and we... -
Multiple copies of Contribute
can I run Contribute 2 and contribute 3 on the same platform? Thanks, Karl -
Error printing multiple copies
For the first time today, I asked Acrobat to print multiple copies of selected pages of a document and it printed other pages that I hadn't asked... -
Multiple copies of the same file
If I add a link to a .pdf file on html file and then publish this html file, after i open the pdf file from that link in Contribute, it appends the... -
Mark Schonewille #2
Re: Multiple copies of application open...
Well, it is Windoze and thus it must be poor programming, as you
said :-)
It means that one app is loaded into memory more than once,
occupying unnessecary capacity and possibly corrupting .ini and
other files. Anyway, probably you should not ask such a question
in a Mac ng.
Mark
Quackers wrote:>
> What are the pros and cons of having more than one copy of an
> application open?
>
> Being a long-time Mac user, I'm used to having only one copy open at a
> time. But I notice that several apps in Windoze can have multiple
> copies open simultaneously. The latter seems weird, but is it poor
> programming, or are there advantages?
>
> We are developing a Java application that currently can have several
> copies open at once, and I'm inclined to say this shouldn't happen.
>
> Thanks,
>
> QMark Schonewille Guest
-
Tacit #3
Re: Multiple copies of application open...
>Well, it is Windoze and thus it must be poor programming, as you
That does not necessarily follow.>said :-)
>It means that one app is loaded into memory more than once,
>occupying unnessecary capacity and possibly corrupting .ini and
>other files.
Some programs are specifically designed to be "reentrant." A reentrant program
is designed to be run multiple times--at least, that is how it appears to the
user.
However, the application itself is only in memory once. A reentrant program
keeps a single copy of the object code in memory; each additional instance of
the program occupies memory for its data, but the code itself is loaded only
once. If the program is running three times, what that actually means is the
code has three separate execution threads running within it, each of which has
its own data area.
--
Rude T-shirts for a rude age: [url]http://www.villaintees.com[/url]
Art, literature, shareware, polyamory, kink, and more:
[url]http://www.xeromag.com/franklin.html[/url]
Tacit Guest
-
Paul Sture #4
Re: Multiple copies of application open...
In article <nobody-6BF932.08151319072003@news1.news.adelphia.net>, Quackers <nobody@home.now> writes:
Why is this weird? If a program such as a spreadsheet supports multiple> What are the pros and cons of having more than one copy of an
> application open?
>
> Being a long-time Mac user, I'm used to having only one copy open at a
> time. But I notice that several apps in Windows can have multiple
> copies open simultaneously. The latter seems weird, but is it poor
> programming, or are there advantages?
>
windows so that you can see more than one file at a time within it, then
I see your point, but for those that don't, why not have multiple
instances?
The disadvantage of only having one instance open is demonstrated by
Netscape on my PC at work. I might have several windows open, but if
a rogue website makes one window barf or hang, killing Netscape kills
all the other windows too.
That depends on the application. Using OS X, I see a minimum of 2 processes> We are developing a Java application that currently can have several
> copies open at once, and I'm inclined to say this shouldn't happen.
>
per Terminal window I have open - login and tcsh.
Paul Sture Guest
-
Tom Stiller #5
Re: Multiple copies of application open...
In article <9N9ITx109Y$Q@elias.decus.ch>,
[email]p_sture@elias.decus.ch[/email] (Paul Sture) wrote:
What about the multiple updates to things like cookies, bookmarks,> In article <nobody-6BF932.08151319072003@news1.news.adelphia.net>, Quackers
> <nobody@home.now> writes:>> > What are the pros and cons of having more than one copy of an
> > application open?
> >
> > Being a long-time Mac user, I'm used to having only one copy open at a
> > time. But I notice that several apps in Windows can have multiple
> > copies open simultaneously. The latter seems weird, but is it poor
> > programming, or are there advantages?
> >
> Why is this weird? If a program such as a spreadsheet supports multiple
> windows so that you can see more than one file at a time within it, then
> I see your point, but for those that don't, why not have multiple
> instances?
>
> The disadvantage of only having one instance open is demonstrated by
> Netscape on my PC at work. I might have several windows open, but if
> a rogue website makes one window barf or hang, killing Netscape kills
> all the other windows too.
preferences, etc.?
-->> That depends on the application. Using OS X, I see a minimum of 2 processes> > We are developing a Java application that currently can have several
> > copies open at once, and I'm inclined to say this shouldn't happen.
> >
> per Terminal window I have open - login and tcsh.
Tom Stiller
PGP fingerprint = 5108 DDB2 9761 EDE5 E7E3
7BDA 71ED 6496 99C0 C7CF
Tom Stiller Guest



Reply With Quote

