Changes in kernel/generic/src/proc/the.c [7a0359b:b3f8fb7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/the.c
r7a0359b rb3f8fb7 33 33 /** 34 34 * @file 35 * @brief 35 * @brief THE structure functions. 36 36 * 37 37 * This file contains functions to manage the THE structure. … … 44 44 #include <arch.h> 45 45 46 46 47 /** Initialize THE structure 47 48 * … … 49 50 * 50 51 * @param the THE structure to be initialized. 51 *52 52 */ 53 53 void the_initialize(the_t *the) … … 66 66 * @param src The source THE structure. 67 67 * @param dst The destination THE structure. 68 *69 68 */ 70 NO_TRACEvoid the_copy(the_t *src, the_t *dst)69 void the_copy(the_t *src, the_t *dst) 71 70 { 72 71 *dst = *src;
Note:
See TracChangeset
for help on using the changeset viewer.