Changeset bd5f3b7 in mainline for kernel/generic/src/ipc/ipc.c


Ignore:
Timestamp:
2011-08-21T13:07:35Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
00aece0, f1a9e87
Parents:
86a34d3e (diff), a6480d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ipc.c

    r86a34d3e rbd5f3b7  
    3838 */
    3939
    40 #include <synch/synch.h>
    4140#include <synch/spinlock.h>
    4241#include <synch/mutex.h>
    4342#include <synch/waitq.h>
    44 #include <synch/synch.h>
    4543#include <ipc/ipc.h>
    46 #include <ipc/ipc_methods.h>
     44#include <abi/ipc/methods.h>
    4745#include <ipc/kbox.h>
    4846#include <ipc/event.h>
     
    232230                }
    233231        }
     232
     233        call->data.task_id = TASK->taskid;
    234234       
    235235        if (do_lock)
     
    296296                atomic_inc(&phone->active_calls);
    297297                call->data.phone = phone;
    298                 call->data.task = TASK;
     298                call->data.task_id = TASK->taskid;
    299299        }
    300300       
     
    408408                        call->caller_phone = call->data.phone;
    409409                call->data.phone = newphone;
    410                 call->data.task = TASK;
     410                call->data.task_id = TASK->taskid;
    411411        }
    412412       
Note: See TracChangeset for help on using the changeset viewer.