Rev 4341 | Rev 4346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4341 | Rev 4345 | ||
---|---|---|---|
Line 934... | Line 934... | ||
934 | goto restart; |
934 | goto restart; |
935 | 935 | ||
936 | /* Include phone address('id') of the caller in the request, |
936 | /* Include phone address('id') of the caller in the request, |
937 | * copy whole call->data, not only call->data.args */ |
937 | * copy whole call->data, not only call->data.args */ |
938 | if (STRUCT_TO_USPACE(calldata, &call->data)) { |
938 | if (STRUCT_TO_USPACE(calldata, &call->data)) { |
- | 939 | /* XXX |
|
- | 940 | * To avoid deadlocks in synchronous calls |
|
- | 941 | * this should be replaced by discarding |
|
- | 942 | * the call and notifying the caller. |
|
- | 943 | */ |
|
939 | return 0; |
944 | return 0; |
940 | } |
945 | } |
941 | return (unative_t)call; |
946 | return (unative_t)call; |
942 | } |
947 | } |
943 | 948 |