Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8873201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:24:20+00:00 2026-06-14T18:24:20+00:00

I’m new to C and looking at Go ‘s source tree I found this:

  • 0

I’m new to C and looking at Go‘s source tree I found this:

https://code.google.com/p/go/source/browse/src/pkg/runtime/race.c

void runtime∕race·Read(int32 goid, void *addr, void *pc);
void runtime∕race·Write(int32 goid, void *addr, void *pc);

void
runtime·raceinit(void)
{
    // ...
}

What do the slashes and dots (·) mean? Is this valid C?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T18:24:21+00:00Added an answer on June 14, 2026 at 6:24 pm

    IMPORTANT UPDATE:

    The ultimate answer is certainly the one you got from Russ Cox, one of Go authors, on the golang-nuts mailing list. That said, I’m leaving some of my earlier notes below, they might help to understand some things.

    Also, from reading this answer linked above, I believe the ∕ “pseudo-slash” may now be translated to regular / slash too (like the middot is translated to dot) in newer versions of Go C compiler than the one I’ve tested below – but I don’t have time to verify.


    The file is compiled by the Go Language Suite’s internal C compiler, which originates in the Plan 9 C compiler(1)(2), and has some differences (mostly extensions, AFAIK) to the C standard.

    One of the extensions is, that it allows UTF-8 characters in identifiers.

    Now, in the Go Language Suite’s C compiler, the middot character (·) is treated in a special way, as it is translated to a regular dot (.) in object files, which is interpreted by Go Language Suite’s internal linker as namespace separator character.

    Example

    For the following file example.c (note: it must be saved as UTF-8 without BOM):

    void ·Bar1() {}
    void foo·bar2() {}
    void foo∕baz·bar3() {}
    

    the internal C compiler produces the following symbols:

    $ go tool 8c example.c
    $ go tool nm example.8
     T "".Bar1
     T foo.bar2
     T foo∕baz.bar3
    

    Now, please note I’ve given the ·Bar1() a capital B. This is
    because that way, I can make it visible to regular Go code – because
    it is translated to the exact same symbol as would result from
    compiling the following Go code:

    package example
    func Bar1() {}  // nm will show:  T "".Bar1
    

    Now, regarding the functions you named in the question, the story goes further down the rabbit hole. I’m a bit less sure if I’m right here, but I’ll try to explain based on what I know. Thus, each sentence below this point should be read as if it had “AFAIK” written just at the end.

    So, the next missing piece needed to better understand this puzzle, is to know something more about the strange "" namespace, and how the Go suite’s linker handles it. The "" namespace is what we might want to call an “empty” (because "" for a programmer means “an empty string”) namespace, or maybe better, a “placeholder” namespace. And when the linker sees an import going like this:

    import examp "path/to/package/example"
    //...
    func main() {
        examp.Bar1()
    }
    

    then it takes the $GOPATH/pkg/.../example.a library file, and during import phase substitutes on the fly each "" with path/to/package/example. So now, in the linked program, we will see a symbol like this:

     T path/to/package/example.Bar1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I'm not entirely sure how I managed to jack this up. http://pretty-senshi.com If you
I have a jquery bug and I've been looking for hours now, I can't
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.