Subversion Repositories HelenOS-historic

Rev

Rev 1248 | Rev 1704 | 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 genericadt
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    list.c
34
 * @file    list.c
31
 * @brief   Functions completing doubly linked circular list implementaion.
35
 * @brief   Functions completing doubly linked circular list implementaion.
32
 *
36
 *
33
 * This file contains some of the functions implementing doubly linked circular lists.
37
 * This file contains some of the functions implementing doubly linked circular lists.
Line 83... Line 87...
83
    head2->prev->next = head1; 
87
    head2->prev->next = head1; 
84
    head1->prev->next = head2->next;
88
    head1->prev->next = head2->next;
85
    head1->prev = head2->prev;
89
    head1->prev = head2->prev;
86
    list_initialize(head2);
90
    list_initialize(head2);
87
}
91
}
-
 
92
 
-
 
93
 /** @}
-
 
94
 */
-
 
95