Announcement

Collapse
No announcement yet.

Glibc 2.20 Has Performance Improvements, File Description Locks

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Glibc 2.20 Has Performance Improvements, File Description Locks

    Phoronix: Glibc 2.20 Has Performance Improvements, File Description Locks

    Allan McRae announced the release of version 2.20 of the GNU C Library (glibc) this Monday morning...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    Too bad about the valgrind situation.

    Comment


    • #3
      Fixed in valgrind HEAD.

      If anything liked Drepper more than the rest of the bunch.

      Comment


      • #4
        Whoever thought of the term file description had to hate beginner developers. Way too close to file descriptor

        Comment


        • #5
          Why do entitled new developers matter?

          Not a care in the world for entitled new developers here.

          Comment


          • #6
            Originally posted by sthalik View Post
            Why do entitled new developers matter?

            Not a care in the world for entitled new developers here.
            You seem awfully hateful for someone that doesn't care.

            Comment


            • #7
              Originally posted by nanonyme View Post
              Whoever thought of the term file description had to hate beginner developers. Way too close to file descriptor
              It's from POSIX actually. See e.g. http://pubs.opengroup.org/onlinepubs...ions/open.html . And yes, there is a difference between a file description and a file descriptor. From the GLIBC manual section about these new-fangled open file description locks:

              It is important to distinguish between the open file description (an instance of an open file, usually created by a call to open) and an open file descriptor, which is a numeric value that refers to the open file description. The locks described here are associated with the open file description and not the open file descriptor.

              Using dup (see Duplicating Descriptors) to copy a file descriptor does not give you a new open file description, but rather copies a reference to an existing open file description and assigns it to a new file descriptor. Thus, open file description locks set on a file descriptor cloned by dup will never conflict with open file description locks set on the original descriptor since they refer to the same open file description. Depending on the range and type of lock involved, the original lock may be modified by a F_OFD_SETLK or F_OFD_SETLKW command in this situation however.
              But yeah, about fscking time. The old POSIX fcntl lock semantics are insane.

              Comment

              Working...
              X