This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: Add memory barrier to malloc


>>>>> "H.J. Lu" == H J Lu <hjl@lucon.org> writes:
    H.J. Lu> --- libc/malloc/arena.c.barrier	2002-12-26 16:36:41.000000000 -0800
    H.J. Lu> +++ libc/malloc/arena.c	2003-05-03 23:56:59.000000000 -0700
    H.J. Lu> @@ -758,6 +758,7 @@ arena_get2(a_tsd, size) mstate a_tsd; si
    H.J. Lu>    /* Add the new arena to the global list.  */
    H.J. Lu>    (void)mutex_lock(&list_lock);
    H.J. Lu>    a->next = main_arena.next;
    H.J. Lu> +  atomic_write_barrier ();
    H.J. Lu>    main_arena.next = a;
    H.J. Lu>    (void)mutex_unlock(&list_lock);

Why would a barrier be needed inside a critical section ? Aren't POSIX
memory model guarantees sufficient ?

~velco


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]