Subversion Repositories HelenOS-historic

Rev

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

Rev 1248 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup genericproc
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    the.c
34
 * @file
31
 * @brief   THE structure functions.
35
 * @brief   THE structure functions.
32
 *
36
 *
33
 * This file contains functions to manage the THE structure.
37
 * This file contains functions to manage the THE structure.
34
 * The THE structure exists at the base address of every kernel
38
 * The THE structure exists at the base address of every kernel
35
 * stack and carries information about current settings
39
 * stack and carries information about current settings
Line 65... Line 69...
65
 */
69
 */
66
void the_copy(the_t *src, the_t *dst)
70
void the_copy(the_t *src, the_t *dst)
67
{
71
{
68
    *dst = *src;
72
    *dst = *src;
69
}
73
}
-
 
74
 
-
 
75
 /** @}
-
 
76
 */
-
 
77