Ignore:
Timestamp:
2006-12-17T12:11:00Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
95155b0c
Parents:
771cd22
Message:

More formatting and indentation changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/proc/thread.c

    r771cd22 r7e7c8747  
    5555                 * belonging to a killed thread.
    5656                 */
    57                 frame_free(KA2PA(ALIGN_DOWN((uintptr_t) t->arch.uspace_window_buffer, PAGE_SIZE)));
     57                frame_free(KA2PA(ALIGN_DOWN((uintptr_t)
     58                        t->arch.uspace_window_buffer, PAGE_SIZE)));
    5859        }
    5960}
     
    6162void thread_create_arch(thread_t *t)
    6263{
    63         if ((t->flags & THREAD_FLAG_USPACE) && (!t->arch.uspace_window_buffer)) {
     64        if ((t->flags & THREAD_FLAG_USPACE) && (!t->arch.uspace_window_buffer))
     65                {
    6466                /*
    6567                 * The thread needs userspace window buffer and the object
     
    7476                 * belonging to a killed thread.
    7577                 */
    76                  t->arch.uspace_window_buffer = (uint8_t *) ALIGN_DOWN(uw_buf, PAGE_SIZE);
     78                 t->arch.uspace_window_buffer = (uint8_t *) ALIGN_DOWN(uw_buf,
     79                        PAGE_SIZE);
    7780        }
    7881}
Note: See TracChangeset for help on using the changeset viewer.