Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Is main() a callback function?

Is main() a callback function?

Scheduled Pinned Locked Moved The Lounge
question
44 Posts 15 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Rick York

    Yes, it is, and it's not re-entrant.

    "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

    R Offline
    R Offline
    Rob Philpott
    wrote on last edited by
    #8

    Interesting, I didn't know/have forgotten about the re-entrancy. Seems you can do it in C#, but that's with a capital 'M'ain, and is a language for wimps.

    Regards, Rob Philpott.

    R G H 4 Replies Last reply
    0
    • OriginalGriffO OriginalGriff

      Probably not:

      Callback (computer programming) - Wikipedia[^]

      a callback, also known as a "call-after"[1] function, is any executable code that is passed as an argument to other code that is expected to call back (execute) the argument at a given time.

      So to be a callback function it would need to be passed as an argument to some other function, and I can't see any good reason to do that when you can call it directly or via a function pointer / function table that is set by the compiler / linker. That you can't call main at all except from a single point in your app kinda backs that up as well!

      "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!

      R Offline
      R Offline
      Rob Philpott
      wrote on last edited by
      #9

      Yes, but I kind of expect the OS to call my method at the given time of the process starting up...? And the address is passed to the OS to be called back on, just through an extra layer of module EXPORTS etc. It's a pedant's dream this. I should move on.

      Regards, Rob Philpott.

      OriginalGriffO 1 Reply Last reply
      0
      • R Rob Philpott

        Interesting, I didn't know/have forgotten about the re-entrancy. Seems you can do it in C#, but that's with a capital 'M'ain, and is a language for wimps.

        Regards, Rob Philpott.

        R Offline
        R Offline
        Rick York
        wrote on last edited by
        #10

        I couldn't agree more.

        "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

        1 Reply Last reply
        0
        • R Rob Philpott

          I can't make up my mind.

          Regards, Rob Philpott.

          D Offline
          D Offline
          DRHuff
          wrote on last edited by
          #11

          Well it never called me back - and I thought we had such a connection... :(( :(( :mad: :(( :((

          I, for one, like Roman Numerals.

          OriginalGriffO T 2 Replies Last reply
          0
          • R Rob Philpott

            Interesting, I didn't know/have forgotten about the re-entrancy. Seems you can do it in C#, but that's with a capital 'M'ain, and is a language for wimps.

            Regards, Rob Philpott.

            R Offline
            R Offline
            Rick York
            wrote on last edited by
            #12

            The non-re-entrancy part comes about because you can't call it yourself. It's not a callback in the strict sense of the term but in effect it is if you think of it as the designated function for the OS to call to run the program. It is not specified in code (this is why it fails the strict definition) but it is implicitly known to the linker and can be overridden. In the case of programs for Windows, it IS overridden to be WinMain.

            "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

            L 1 Reply Last reply
            0
            • R Rob Philpott

              Yes, but I kind of expect the OS to call my method at the given time of the process starting up...? And the address is passed to the OS to be called back on, just through an extra layer of module EXPORTS etc. It's a pedant's dream this. I should move on.

              Regards, Rob Philpott.

              OriginalGriffO Offline
              OriginalGriffO Offline
              OriginalGriff
              wrote on last edited by
              #13

              The OS doesn't call your main method at all - there are three places it can start: the MZ Stub (which for Windows apps will just print "this program cannot be run in MSDOS mode" and quit the app), the NE or (for more modern apps) the PE: Portable Executable - Wikipedia[^]. And EXE files (even old MSDOS 16 bit apps) don't call main immediately anyway, they do allocation and static initialisation before they are ready to start running the code you wrote!

              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!

              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
              "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

              R 1 Reply Last reply
              0
              • D DRHuff

                Well it never called me back - and I thought we had such a connection... :(( :(( :mad: :(( :((

                I, for one, like Roman Numerals.

                OriginalGriffO Offline
                OriginalGriffO Offline
                OriginalGriff
                wrote on last edited by
                #14

                It called me back once, but it was drunk at the time.

                "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!

                "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                D 1 Reply Last reply
                0
                • R Rob Philpott

                  Interesting, I didn't know/have forgotten about the re-entrancy. Seems you can do it in C#, but that's with a capital 'M'ain, and is a language for wimps.

                  Regards, Rob Philpott.

                  G Offline
                  G Offline
                  Gary Wheeler
                  wrote on last edited by
                  #15

                  Rob Philpott wrote:

                  C# ... is a language for wimps

                  To quote my elderly cat, "Fight me, bitch."

                  Software Zen: delete this;

                  R 1 Reply Last reply
                  0
                  • R Rob Philpott

                    I can't make up my mind.

                    Regards, Rob Philpott.

                    P Offline
                    P Offline
                    PIEBALDconsult
                    wrote on last edited by
                    #16

                    It probably depends on the language, compiler, system, etc. As far as I know, in the languages I use, there nothing special about call-back functions, it's only about how an ordinary function is used. There's no reason to declare that no language will ever allow it. I seem to recall having a desire for a recursive main. : ) Just because.

                    1 Reply Last reply
                    0
                    • G Gary Wheeler

                      Rob Philpott wrote:

                      C# ... is a language for wimps

                      To quote my elderly cat, "Fight me, bitch."

                      Software Zen: delete this;

                      R Offline
                      R Offline
                      Rob Philpott
                      wrote on last edited by
                      #17

                      It's how I express my intent daily to my ungrateful computer - I'm hooked, but its still the kid's soft play of computer languages. :-D

                      Regards, Rob Philpott.

                      1 Reply Last reply
                      0
                      • R Rob Philpott

                        I can't make up my mind.

                        Regards, Rob Philpott.

                        Z Offline
                        Z Offline
                        ZurdoDev
                        wrote on last edited by
                        #18

                        How dare you ask programming questions in the lounge?!! I'm outraged. :mad:

                        Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                        R 1 Reply Last reply
                        0
                        • Z ZurdoDev

                          How dare you ask programming questions in the lounge?!! I'm outraged. :mad:

                          Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                          R Offline
                          R Offline
                          Rob Philpott
                          wrote on last edited by
                          #19

                          Yeah, it's good to be reckless sometimes. Send me the codez and I'll go away. :)

                          Regards, Rob Philpott.

                          1 Reply Last reply
                          0
                          • OriginalGriffO OriginalGriff

                            The OS doesn't call your main method at all - there are three places it can start: the MZ Stub (which for Windows apps will just print "this program cannot be run in MSDOS mode" and quit the app), the NE or (for more modern apps) the PE: Portable Executable - Wikipedia[^]. And EXE files (even old MSDOS 16 bit apps) don't call main immediately anyway, they do allocation and static initialisation before they are ready to start running the code you wrote!

                            "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!

                            R Offline
                            R Offline
                            Rob Philpott
                            wrote on last edited by
                            #20

                            That reminds me of a thing I read some time back, titled something along the lines of 'the 50 things Windows does before hitting main()'. Can't find it but it's out there somewhere, by one of the SysInternals lot I think. It was both interesting and really boring at the same time.

                            Regards, Rob Philpott.

                            R 1 Reply Last reply
                            0
                            • R Rick York

                              The non-re-entrancy part comes about because you can't call it yourself. It's not a callback in the strict sense of the term but in effect it is if you think of it as the designated function for the OS to call to run the program. It is not specified in code (this is why it fails the strict definition) but it is implicitly known to the linker and can be overridden. In the case of programs for Windows, it IS overridden to be WinMain.

                              "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

                              L Offline
                              L Offline
                              Lost User
                              wrote on last edited by
                              #21

                              Rick York wrote:

                              you can't call it yourself.

                              Indeed you can, but you need to know what you are doing.

                              Rick York wrote:

                              but it is implicitly known to the linker

                              Not quite, there is a reference to it in the run time libraries which must be satisfied at link time.

                              Rick York wrote:

                              in the case of programs for Windows, it IS overridden to be WinMain.

                              But there is a main() inside the Windows libraries, which again gets called by the run time (unless it has changed in the last 20+ years). And that then calls in to WinMain.

                              R 1 Reply Last reply
                              0
                              • R Rob Philpott

                                Interesting, I didn't know/have forgotten about the re-entrancy. Seems you can do it in C#, but that's with a capital 'M'ain, and is a language for wimps.

                                Regards, Rob Philpott.

                                H Offline
                                H Offline
                                honey the codewitch
                                wrote on last edited by
                                #22

                                C is for wimps Real programmers use butterflies

                                Real programmers use butterflies

                                T 1 Reply Last reply
                                0
                                • OriginalGriffO OriginalGriff

                                  It called me back once, but it was drunk at the time.

                                  "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!

                                  D Offline
                                  D Offline
                                  DRHuff
                                  wrote on last edited by
                                  #23

                                  Did it say - "I want to C you again!" ? And did you reply #ly that you had moved on? :-D

                                  I, for one, like Roman Numerals.

                                  OriginalGriffO 1 Reply Last reply
                                  0
                                  • R Rob Philpott

                                    I can't make up my mind.

                                    Regards, Rob Philpott.

                                    H Offline
                                    H Offline
                                    honey the codewitch
                                    wrote on last edited by
                                    #24

                                    I figure every function is a callback function - it's just a matter of perspective. :-D

                                    Real programmers use butterflies

                                    1 Reply Last reply
                                    0
                                    • R Rob Philpott

                                      I can't make up my mind.

                                      Regards, Rob Philpott.

                                      L Offline
                                      L Offline
                                      Lost User
                                      wrote on last edited by
                                      #25

                                      It's an "entry point"; "Main" wasn't something that was part of a "response", other than "call static Main in class x".

                                      It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                      1 Reply Last reply
                                      0
                                      • R Rob Philpott

                                        I can't make up my mind.

                                        Regards, Rob Philpott.

                                        G Offline
                                        G Offline
                                        Gary Wheeler
                                        wrote on last edited by
                                        #26

                                        If you take the view that your application is an interruption to a busy operating system's schedule, but it figures it should let you do your thing before you whine and get all bitchy about it, then yes, it is a callback function.

                                        Software Zen: delete this;

                                        1 Reply Last reply
                                        0
                                        • R Rob Philpott

                                          I can't make up my mind.

                                          Regards, Rob Philpott.

                                          M Offline
                                          M Offline
                                          Mark_Wallace
                                          wrote on last edited by
                                          #27

                                          Are you asking if it's masculine or feminine? I've no idea, and I don't want to look, just in case.

                                          I wanna be a eunuchs developer! Pass me a bread knife!

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups