Subversion Repositories HelenOS

Rev

Rev 2128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2128 Rev 2465
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2006 Ondrej Palkovsky
2
 * Copyright (c) 2007 Pavel Jancik
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
Line 30... Line 30...
30
  * @brief arm32 architecture dependent parts of libc
30
  * @brief arm32 architecture dependent parts of libc
31
  * @ingroup lc
31
  * @ingroup lc
32
 * @{
32
 * @{
33
 */
33
 */
34
/** @file
34
/** @file
-
 
35
 *  @brief Uspace threads and TLS.
35
 */
36
 */
36
 
37
 
37
#include <thread.h>
38
#include <thread.h>
38
#include <malloc.h>
39
#include <malloc.h>
39
 
40
 
40
/** Allocate TLS & TCB for initial module threads
41
/** Allocates TLS & TCB.
41
 *
42
 *
42
 * @param data Start of data section
43
 * @param data Start of data section (output parameter).
-
 
44
 * @param size Size of (tbss + tdata) sections.
43
 * @return pointer to tcb_t structure
45
 * @return     Pointer to the allocated #tcb_t structure.
44
 */
46
 */
45
tcb_t * __alloc_tls(void **data, size_t size)
47
tcb_t * __alloc_tls(void **data, size_t size)
46
{
48
{
47
    /* TODO */
49
    tcb_t *result;
-
 
50
 
-
 
51
    result = malloc(sizeof(tcb_t) + size);
-
 
52
    *data = ((void *)result) + sizeof(tcb_t);
48
    return NULL;
53
    return result;
49
}
54
}
50
 
55
 
-
 
56
/** Deallocates TLS & TCB.
-
 
57
 *
-
 
58
 * @param tcb TCB structure to be deallocated (along with corresponding TLS).
-
 
59
 * @param size Not used.
-
 
60
 */
51
void __free_tls_arch(tcb_t *tcb, size_t size)
61
void __free_tls_arch(tcb_t *tcb, size_t size)
52
{
62
{
53
    /* TODO */
63
    free(tcb);
54
}
64
}
55
 
65
 
56
/** @}
66
/** @}
57
 */
67
 */