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


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/arm32
Files:
2 edited
2 moved

Legend:

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

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

    rb9641ee rbc1f1c2  
    3131 */
    3232/** @file
    33  *  @brief psthread related declarations.
     33 *  @brief Fibrils related declarations.
    3434 */
    3535
    36 #ifndef LIBC_arm32_PSTHREAD_H_
    37 #define LIBC_arm32_PSTHREAD_H_
     36#ifndef LIBC_arm32_FIBRIL_H_
     37#define LIBC_arm32_FIBRIL_H_
    3838
    3939#include <types.h>
     
    6464
    6565
    66 /** Thread context.
     66/** Fibril context.
    6767 *
    6868 *  Only registers preserved accross function calls are included. r9 is used
  • uspace/lib/libc/arch/arm32/include/thread.h

    rb9641ee rbc1f1c2  
    5050 */
    5151typedef struct {
    52         /** psthread data. */
    53         void *pst_data;
     52        /** Fibril data. */
     53        void *fibril_data;
    5454} tcb_t;
    5555
Note: See TracChangeset for help on using the changeset viewer.