Changes in kernel/generic/src/proc/the.c [b3f8fb7:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/the.c
rb3f8fb7 r7a0359b 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 47 46 /** Initialize THE structure 48 47 * … … 50 49 * 51 50 * @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 * 68 69 */ 69 void the_copy(the_t *src, the_t *dst)70 NO_TRACE void the_copy(the_t *src, the_t *dst) 70 71 { 71 72 *dst = *src;
Note:
See TracChangeset
for help on using the changeset viewer.