Changeset bc1f1c2 in mainline for uspace/lib/libc/arch/ia64


Ignore:
Timestamp:
2007-06-28T00:54:12Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
12f91130
Parents:
b9641ee
Message:

Goodbye pseudo threads, welcome fibrils.
The renaming might still be incomplete.

Location:
uspace/lib/libc/arch/ia64
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/arch/ia64/Makefile.inc

    rb9641ee rbc1f1c2  
    3737
    3838ARCH_SOURCES += arch/$(ARCH)/src/syscall.S \
    39                 arch/$(ARCH)/src/psthread.S \
     39                arch/$(ARCH)/src/fibril.S \
    4040                arch/$(ARCH)/src/thread.c
    4141
  • uspace/lib/libc/arch/ia64/include/fibril.h

    rb9641ee rbc1f1c2  
    3333 */
    3434
    35 #ifndef LIBC_ia64_PSTHREAD_H_
    36 #define LIBC_ia64_PSTHREAD_H_
     35#ifndef LIBC_ia64_FIBRIL_H_
     36#define LIBC_ia64_FIBRIL_H_
    3737
    3838#include <types.h>
     
    4545 * No need to allocate scratch area.
    4646 */
    47 #define SP_DELTA        (0+ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT))
     47#define SP_DELTA        (0 + ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT))
    4848
    4949#define PFM_MASK        (~0x3fffffffff)
  • uspace/lib/libc/arch/ia64/include/thread.h

    rb9641ee rbc1f1c2  
    3333 */
    3434
    35 #ifndef LIBC_ia64THREAD_H_
    36 #define LIBC_ia64THREAD_H_
     35#ifndef LIBC_ia64_THREAD_H_
     36#define LIBC_ia64_THREAD_H_
    3737
    3838#define THREAD_INITIAL_STACK_PAGES_NO 2
     
    4141typedef struct {
    4242        void *dtv; /* unused in static linking*/
    43         void *pst_data;
     43        void *fibril_data;
    4444} tcb_t;
    4545
Note: See TracChangeset for help on using the changeset viewer.