cvs commit: src/sys/i386/include tls.h src/gnu/usr.bin/cc34/cc_prep/config dragonfly-spec.h src/gnu/usr.bin/cc34/cc_prep/config/i386 dragonfly.h src/lib/csu/i386 crt1.c src/lib/libc/gen tls.c src/lib/libc/i386/sys cerror.S src/lib/libc/include libc_private.h ...

Matthew Dillon dillon at apollo.backplane.com
Wed May 11 22:12:00 PDT 2005


:I need fast critical section, otherwise I can just use sigprocmask
:everywhere, the critical section has to be per-thread based, a
:shared memory page won't work. one thread blocking signal shouldn't
:stop other threads to process signal.
:
:David Xu

    Well, each thread could have its own block of memory.  But that could
    add up fairly quickly.

    A TCB based critical section is certainly reasonable, and easy for the
    kernel to access.

    Another option would be to implement a code path critical section.
    Basically we would inform the kernel not to interrupt userland if
    the userland instruction pointer is within a specified range of
    addresses.  This would also be easy to implement.

					-Matt
					Matthew Dillon 
					<dillon at xxxxxxxxxxxxx>





More information about the Commits mailing list