Changeset 9b9e385 in mainline for generic/src/proc/thread.c


Ignore:
Timestamp:
2006-02-05T16:08:27Z (19 years ago)
Author:
Sergey Bondari <bondari@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
266294a9
Parents:
328e0d3
Message:

frame_alloc() functions variations in order to avoid problems with frame_alloc_generic() changes.
IMPORTANT: Parameter order for frame_alloc() was changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/proc/thread.c

    r328e0d3 r9b9e385  
    167167                spinlock_initialize(&t->lock, "thread_t_lock");
    168168       
    169                 frame_ks = frame_alloc(FRAME_KA, ONE_FRAME, NULL, NULL);
     169                frame_ks = frame_alloc(ONE_FRAME, FRAME_KA);
    170170                if (THREAD_USER_STACK & flags) {
    171                         frame_us = frame_alloc(FRAME_KA, ONE_FRAME, NULL,NULL);
     171                        frame_us = frame_alloc(ONE_FRAME, FRAME_KA);
    172172                }
    173173
Note: See TracChangeset for help on using the changeset viewer.