Multiple copies of application open...

Ask a Question related to Mac Applications & Software, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. Unable to print multiple copies
      You can try to reset your printer subsystem. (Desperate, but worth a try) Mike
    2. 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...
    3. Multiple copies of Contribute
      can I run Contribute 2 and contribute 3 on the same platform? Thanks, Karl
    4. 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...
    5. 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...
  3. #2

    Default 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,
    >
    > Q
    Mark Schonewille Guest

  4. #3

    Default 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.
    That does not necessarily follow.

    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

  5. #4

    Default Re: Multiple copies of application open...

    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.
    > 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.
    >
    That depends on the application. Using OS X, I see a minimum of 2 processes
    per Terminal window I have open - login and tcsh.
    Paul Sture Guest

  6. #5

    Default Re: Multiple copies of application open...

    In article <9N9ITx109Y$Q@elias.decus.ch>,
    [email]p_sture@elias.decus.ch[/email] (Paul Sture) wrote:
    > 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.
    What about the multiple updates to things like cookies, bookmarks,
    preferences, etc.?
    >
    > > 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.
    > >
    > That depends on the application. Using OS X, I see a minimum of 2 processes
    > 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139