Changeset 25eec4e in mainline for uspace/lib/c/generic/fibril.c


Ignore:
Timestamp:
2013-04-19T18:38:18Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6d717a4
Parents:
a1e2df13 (diff), 289cb7dd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline chages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/fibril.c

    ra1e2df13 r25eec4e  
    3737#include <fibril.h>
    3838#include <thread.h>
     39#include <stack.h>
    3940#include <tls.h>
    4041#include <malloc.h>
     42#include <abi/mm/as.h>
     43#include <as.h>
    4144#include <unistd.h>
    4245#include <stdio.h>
     
    4750#include <async.h>
    4851
    49 #ifndef FIBRIL_INITIAL_STACK_PAGES_NO
    50         #define FIBRIL_INITIAL_STACK_PAGES_NO  1
    51 #endif
    52 
    5352/**
    5453 * This futex serializes access to ready_list,
     
    9695fibril_t *fibril_setup(void)
    9796{
    98         tcb_t *tcb = __make_tls();
     97        tcb_t *tcb = tls_make();
    9998        if (!tcb)
    10099                return NULL;
     
    102101        fibril_t *fibril = malloc(sizeof(fibril_t));
    103102        if (!fibril) {
    104                 __free_tls(tcb);
     103                tls_free(tcb);
    105104                return NULL;
    106105        }
     
    123122void fibril_teardown(fibril_t *fibril)
    124123{
    125         __free_tls(fibril->tcb);
     124        tls_free(fibril->tcb);
    126125        free(fibril);
    127126}
     
    195194                                         * stack member filled.
    196195                                         */
    197                                         free(stack);
     196                                        as_area_destroy(stack);
    198197                                }
    199198                                fibril_teardown(srcf->clean_after_me);
     
    257256 * @param func Implementing function of the new fibril.
    258257 * @param arg Argument to pass to func.
     258 * @param stksz Stack size in bytes.
    259259 *
    260260 * @return 0 on failure or TLS of the new fibril.
    261261 *
    262262 */
    263 fid_t fibril_create(int (*func)(void *), void *arg)
     263fid_t fibril_create_generic(int (*func)(void *), void *arg, size_t stksz)
    264264{
    265265        fibril_t *fibril;
     
    269269                return 0;
    270270       
    271         fibril->stack =
    272             (char *) malloc(FIBRIL_INITIAL_STACK_PAGES_NO * getpagesize());
    273         if (!fibril->stack) {
     271        size_t stack_size = (stksz == FIBRIL_DFLT_STK_SIZE) ?
     272            stack_size_get() : stksz;
     273        fibril->stack = as_area_create((void *) -1, stack_size,
     274            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE | AS_AREA_GUARD |
     275            AS_AREA_LATE_RESERVE);
     276        if (fibril->stack == (void *) -1) {
    274277                fibril_teardown(fibril);
    275278                return 0;
     
    281284        context_save(&fibril->ctx);
    282285        context_set(&fibril->ctx, FADDR(fibril_main), fibril->stack,
    283             FIBRIL_INITIAL_STACK_PAGES_NO * getpagesize(), fibril->tcb);
     286            stack_size, fibril->tcb);
    284287
    285288        return (fid_t) fibril;
     
    298301        fibril_t *fibril = (fibril_t *) fid;
    299302       
    300         free(fibril->stack);
     303        as_area_destroy(fibril->stack);
    301304        fibril_teardown(fibril);
    302305}
Note: See TracChangeset for help on using the changeset viewer.