What the result while a user thread holding pidlock to sleep?

I know pidlock is used to protect process create/exit/swap and so on. When a user kernel thread sleeps holding pidlock, the dispatcher doesn't work or system will hang? So what the real function of pidlock?
Thanks?

Hi, can't be sure out here, but it sounds that perhaps there may have been a hidden folder behind those other ones? Did you drag select?
If it isn't that then perhaps som Disk/OS maintenance is in order.

Similar Messages

  • How to display additional fields in the results a 'search user'?

    This may be a newb question but how can I display additional user attributes in the results of a user search in the admin console?
    i.e. more than just the standard fields of: User ID, First Name, Last Name, Status, Enable, Disable, Unlock and Delete.
    I would like to include some UDFs that I have defined for the create user form e.g. personnel number.
    Thanks,
    Bernie

    Thats not gonna work for sure. Thats to include additional attributes in the search input parameters drop-down. There is another procedure to do that, but not very sure if it works or not because once I was decompiling the code and found that it doesn't have an implementation. You can anyway try it out, the worst would be that you would not be able to see the column headings, but try atleast:
    And thats through the use of properties file. Open up ** and search for the following section-
    *#global.request.users.selectedListDisplayFields=*
    *#global.request.users.selectedListDisplayFields.lables=*
    Remove the comments and update it to below-
    global.request.users.selectedListDisplayFields=USR_UDF_EMPID
    global.request.users.selectedListDisplayFields.lables=global.xmlmetadata.users.USR_UDF_EMPID
    where USR_UDF_EMPID is the UDF and global.xmlmetadata.users.USR_UDF_EMPID is its associated translation.
    Thanks
    Sunny

  • Whats the exact differnrce between User-Exit and BADI ?

    Hi All,
    Can any one tell me whats the exact difference between User-Exit and BADI ?
    Even in User Exit also we write our code and the same in BADI also. Can any one plse elaborate wats the exact difference between these ...
    Thanks & Regards,
    Anil Kumar.

    BADI is the Object oriented concept of USER-EXIT
    chk this
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Message was edited by:
            Chandrasekhar Jagarlamudi

  • Error in the result while adding

    Hi
    This is a simple program which repeatedly adds a number once you define the step size of the number. Shift register is also being used. suppose if the no. is 9 and the step size is 1 then the result should be 10, but it is not so. what is wrong with the program?
    Attachments:
    Number addition.vi ‏6 KB

    smercurio_fc wrote:
    It really depends on what you're doing. For a loop that is intended to run for a long time you do not want to have the loop steal all of the CPU processing time. Otherwise the user interface and the OS will become unresponsive. There are times, however, when you would not need to put in a delay, such as using a while loop to create a Functional Global Variable, a.k.a. Action Engine. Or, if the loop is intended to only run for a few iterations (and there's a guarantee that it will break out and not become an infinite loop).
    These use cases have now better workarounds in newer LabVIEW versions.
    Use an event structure for the UI loop. Only spin the loop if things change. Never do the same operations on the same inputs more than once unless you expect a different result every time.
    FGVs no longer need loops at all, we can use globally initialized feedback nodes.
    To guarantee that we don't create an infinite while loop, we use a FOR loop with the conditional terminal and wire a reasonable upper iteration limit to N.
    LabVIEW Champion . Do more with less code and in less time .

  • Whats the functional difference between user IDs SAP* and DDIC?

    Whats the functional difference between SAP* and DDIC? Can any one tell me please. I am new here. Thanks in advance.

    Hi Farooq,
    There are three user IDs in various SAP clients.
    1. SAP* (Client 000 and 001)
    SAP* denotes the default super user and has all administrative powers.
    2. DDIC (Client 000 and 001)
    DDIC user is responsible for the maintenance of the ABAP/4 Dictionary and the software logistics.
    3. EarlyWatch (Client 066)
    The EarlyWatch user has access only to monitoring and performance data.
    Please check this link for more information on data dictionary objects.
    http://help.sap.com/saphelp_webas620/helpdata/en/cf/21ea31446011d189700000e8322d00/content.htm
    Hope this will help.
    Regards,
    Ferry Lianto

  • How to resolve the error while using user defined function.

    EPN Assembly file
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:osgi="http://www.springframework.org/schema/osgi"
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"
    xmlns:jdbc="http://www.oracle.com/ns/ocep/jdbc"
    xmlns:spatial="http://www.oracle.com/ns/ocep/spatial"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/osgi
    http://www.springframework.org/schema/osgi/spring-osgi.xsd
    http://www.bea.com/ns/wlevs/spring
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd
    http://www.oracle.com/ns/ocep/jdbc
    http://www.oracle.com/ns/ocep/jdbc/ocep-jdbc.xsd
    http://www.oracle.com/ns/ocep/spatial
    http://www.oracle.com/ns/ocep/spatial/ocep-spatial.xsd">
         <wlevs:event-type-repository>
              <wlevs:event-type type-name="TestEvent">
                   <wlevs:class>com.bea.wlevs.event.example.FunctionCEP.TestEvent</wlevs:class>
              </wlevs:event-type>
         </wlevs:event-type-repository>
         <wlevs:adapter id="InputAdapter"
              class="com.bea.wlevs.adapter.example.FunctionCEP.InputAdapter">
              <wlevs:listener ref="inputStream" />
         </wlevs:adapter>
         <wlevs:channel id="inputStream" event-type="TestEvent">
              <wlevs:listener ref="processor" />
         </wlevs:channel>
         <wlevs:processor id="processor">
              <wlevs:listener ref="outputStream" />
              <wlevs:function function-name="sum_fxn" exec-method="execute">
              <bean>com.bea.wlevs.example.FunctionCEP.TestFunction</bean>
              </wlevs:function>
         </wlevs:processor>
         <wlevs:channel id="outputStream" event-type="TestEvent">
              <wlevs:listener ref="bean" />
         </wlevs:channel>
         <bean id="bean" class="com.bea.wlevs.example.FunctionCEP.OutputBean">
         </bean>
    </beans>
    Event class
    package com.bea.wlevs.event.example.FunctionCEP;
    public class TestEvent {
         private int num_1;
         private int num_2;
         private int sum_num;
         public int getSum_num() {
              return sum_num;
         public void setSum_num(int sumNum) {
              sum_num = sumNum;
         public int getNum_1() {
              return num_1;
         public void setNum_1(int num_1) {
              this.num_1 = num_1;
         public int getNum_2() {
              return num_2;
         public void setNum_2(int num_2) {
              this.num_2 = num_2;
    Adapter class
    package com.bea.wlevs.adapter.example.FunctionCEP;
    import com.bea.wlevs.ede.api.RunnableBean;
    import com.bea.wlevs.ede.api.StreamSender;
    import com.bea.wlevs.ede.api.StreamSource;
    import com.bea.wlevs.event.example.FunctionCEP.TestEvent;
    public class InputAdapter implements RunnableBean, StreamSource {
    private StreamSender eventSender;
    public InputAdapter() {
    super();
    public void run() {
         generateMessage();
    private void generateMessage() {
         TestEvent event = new TestEvent();
         event.setNum_1(10);
         event.setNum_2(20);
         eventSender.sendInsertEvent(event);
    public void setEventSender(StreamSender sender) {
    eventSender = sender;
    public synchronized void suspend() {
    Output Bean class
    package com.bea.wlevs.example.FunctionCEP;
    import com.bea.wlevs.ede.api.StreamSink;
    import com.bea.wlevs.event.example.FunctionCEP.TestEvent;
    import com.bea.wlevs.util.Service;
    public class OutputBean implements StreamSink {
         public void onInsertEvent(Object event) {
              System.out.println("In Output Bean");
              TestEvent event1 = new TestEvent();
              System.out.println("Num_1 is :: " + event1.getNum_1());
              System.out.println("Num_2 is :: " +event1.getNum_2());
              System.out.println("Sum of the numbers is :: " +event1.getSum_num());
    Function Class
    package com.bea.wlevs.example.FunctionCEP;
    public class TestFunction {
         public Object execute(int num_1, int num_2)
              return (num_1 + num_2);
    config.xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <wlevs:config xmlns:wlevs="http://www.bea.com/ns/wlevs/config/application"
    xmlns:jdbc="http://www.oracle.com/ns/ocep/config/jdbc">
         <processor>
              <name>processor</name>
                   <rules>
                   <view id="v1" schema="num_1 num_2">
                        <![CDATA[
                             select num_1, num_2 from inputStream     
                        ]]>
                   </view>
                   <view id="v2" schema="num_1 num_2">
                   <![CDATA[
                   select sum_fxn(num_1,num_2), num_2 from inputStream // I am getting error when i am trying to call this function
                   ]]>
                   </view>
                   <query id="q1">
                        <![CDATA[
                             select from v2[now] as num_2*     // Showing error while accessing the view also               ]]>
                   </query>
              </rules>
         </processor>
    </wlevs:config>
    Error I am getting is :
    Invalid statement: "select >>sum_fxn<<(num_1,num_2),age from inputStream"
    Description: Invalid call to function or constructor: sum_fxn
    Cause: Probable causes are: Function name sum_fxn(int,int) provided is invalid, or arguments are of
    the wrong type., or Error while handling member access to complex type. Constructor sum_fxn of type
    sum_fxn not found. or Probable causes are: Function name sum_fxn(int,int) provided is invalid, or
    arguments are of the wrong type., or Error while handling member access to complex type.
    Constructor sum_fxn of type sum_fxn not found.
    Action: Verify function or constructor for complex type exists, is not ambiguous, and has the correct
    number of parameters.
    I have made a user defined function in a java class and configured this function in the EPN assembly file under the processor tag.
    But when i am trying to access the function in the config.xml file , it is giving me an error in the query.
    Please provide urgent help that how to write the exact query.

    Hi,
    In the EPN Assembly file use
    <bean class="com.bea.wlevs.example.FunctionCEP.TestFunction"/>
    instead of
    <bean>com.bea.wlevs.example.FunctionCEP.TestFunction</bean>
    Best Regards,
    Sandeep

  • SearchBox Not showing the result while entering the query in XSLT Listview webpart

    I Have a programmitically created a XSLT listView webpart,in that webpart I have  a Searchbox.If any search query i given in that box result is not showing or list items is not filtering based on the query.My code is below
      SPListItemCollection listItemColl = this.GetData();
                SPListItem listItem = null;
                string ListName = string.Empty;
                string listViewName = string.Empty;
                try
                    // create our List View web part
                    XsltListViewWebPart wp = new XsltListViewWebPart();
                    SPWeb web = SPContext.Current.Web;
                    if (listItemColl.Count > 0)
                        listItem = listItemColl[0];
                        if (listItem[CommonResources.List_Field_TilesListName] != null)
                            this.divListviewConfigTileWrapper.Controls.Clear();
                            ListName = Convert.ToString(listItem[CommonResources.List_Field_TilesListName]);
                            SPList list = web.Lists[ListName];
                            wp.ID = ListName + "_WP";
                            wp.ListId = list.ID;
                            wp.ListName = list.ID.ToString("B").ToUpper();
                            wp.WebId = web.ID;
                            if (listItem[CommonResources.List_Field_ListViewName] != null)
                                listViewName = Convert.ToString(listItem[CommonResources.List_Field_ListViewName]);
                                wp.XmlDefinition = list.Views[listViewName].GetViewXml();
                                wp.ViewGuid = list.Views[listViewName].ID.ToString("B").ToUpper();
                            else
                                wp.XmlDefinition = list.DefaultView.GetViewXml();
                                wp.ViewGuid = list.DefaultView.ID.ToString("B").ToUpper();
                            wp.InplaceSearchEnabled = true;                        
                            wp.AllowConnect = true;
                            wp.AsyncRefresh = true;               
                            wp.ViewGuid = list.Views[listViewName].ID.ToString("B").ToUpper();
                            wp.View.TabularView = false;                       
                            Control ctrl = (Control)wp;
                            this.divListviewConfigTileWrapper.Controls.Add(ctrl);
    Any please help me regarding this.

    Hi Karthik,
    Is your question related in any ways to Microsoft scheduling solution PROJECT? In case it is, please develop with more details about the exact issue, technology, environment, version...
    In case it is not, please delete and post it to the right TechNet forum in order to have an helpful hand.
    Regards.
    Guillaume Rouyre - MBA, MCP, MCTS

  • IPhone3G, whats the result?

    Hi..
    I hope till now many of you have purchased iPhone3G. I want to know how was the experience of purchasing it.
    1)Did you find any difference between iPhone and iPhone3G?
    2)Is the speaker having more volume?
    3)Does wireless and 3G eats less battery than the previous iPhone's internet?
    4)Is the iPhone3G slow or hangs?
    5)Overall how did you find iPhone3G?
    Thank You!

    *1)Did you find any difference between iPhone and iPhone3G?*
    iPhone 3G screen has a slight yellow tint
    iPhone 3G feels nicer in my hand
    iPhone 3G connectivity on WiFi is slower than old WiFi waiting to find out if more people are experiencing the same problem
    *2)Is the speaker having more volume?*
    Yes its slightly louder
    *3)Does wireless and 3G eats less battery than the previous iPhone's internet?*
    This is tottaly subjective but it "seems" to me that 3G EATS up battery about the same or slightly more than the old iPhone.
    4) Is the iPhone3G slow or hangs?
    Without question the iphone3G is slower and hangs up considerably more than the old iphone.
    Now I don't know if it’s because of the 2.0 update, or the new apps store, or the phone components where not the same quality as the old iPhone. I really think it has to do with the apps. So I’m going to uninstall all of them and give it another shot.
    5)Overall how did you find iPhone3G?
    Overall I love the 3G speeds over edge. So to me thats the biggest part.
    The constant crashing is a MAJOR problem. In a typical hour period the iphone 3G is either un response or an app crashes about 3 - 8 times.
    Certain features eg clicking on the SMS button was much faster than it is now.
    If you don’t care about 3G speeds stick with your old iphone, until apple fixes the many problems.

  • Add WHERE criterias in addition to what the user enters on search page

    Hi,
    This may be a simple problem, but I have not been able to solve it.....Is there a way for me to code another search criteria in addition to what the user enters?
    I'm trying to create a simple search page. Basically, user logs on, i get his acoount number and save it in a variable. Then whatever the user's search criterias are , I want to add "AND ACCOUNT = ???."
    I've tried:
    In the processRequest, retrieve his account number using a VO, stored account number in variavle x and then call a initQuery(x) for the VO to get only the rows that he should be able to see. Problem A: I get 'SQLStmtException' when I test the page by trying to do a Simple Search. So to fix that, in the VOImpl, I added these two calls -- setWhereClauseParams(null); setWhereClause(null); -- after the executeQuery(). After I did this, ran into Problem B: the user could search any record that wasn't associated with his account.
    I also tried to dynamically create the vo using createViewObjectFromQueryStmt("Select * from table where account = " + x) but was not successful. The page didn't render and I received a ClassCastException similar to this thread -- Re: How to Create OAViewObject programatically
    I'm new to OAF and would appreciate any pointers on how to implement this.
    Thanks,
    LL

    Hi,
    I assume that you haven't tried the following steps..if you have and still get an error, give us the SQL statement error that is coming up. If I misunderstood your requirement, could you elaborate.
    I assume that when the user logs in you get the account number automatically.
    You could define the VO to have the following where condition 'WHERE ACCOUNT=:1'.
    Then you set the account id from the user using setWhereClauseParams(0,accountid) and call executeQuery. This would limit the result to that user.
    This will work in addition to any other search fields that might have been used in the query.
    For e.g with just the account id the sql that will be fired is
    Select attribute1, attribute2....from Tablexxx where account = :1
    Any other user search criteria given in the page will result in a ssql query like the following
    select * from (Select attribute1, attribute2 ...from Tablexx where accoount = :1) where newattribute like `%xx`
    Hope this helps. Let us know if you still have issues.
    Thank you,
    Arun

  • HT2638 Hi, My Iphoto (on Mavericks) shows me a thumbnail but actually it is another photo whan you open it up...any idea what the problem could be? big thanks!

    This has happened since my snow leopard update to be fair. I continuously mess up all of my "events" with photoes that shoul now be there due to this mistake.
    Anyone know something about it?
    Big thanks in advance

    given the time this problem has existed hard to say what the results will be but Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your thumbnails - this may take several tries
    LN

  • How to solve the issue "CUV check user equivalence failed" ?

    Folks,
    Hello. I am installing Oracle 11gR2 RAC using 2 VMs (rac1 and rac2) whose OS are Oracle Linux 5.6 in VMPlayer according to the website http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    In order to install Grid Infrastructure, we need to run Cluster Utility Verification (CUV) at first by running the cammand below:
    [ora11g@rac1 grid]$ ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose
    Its output:
    Performing pre-checks for cluster services setup
    Check: User equivalence for user “ora11g”
    Node Comment
    rac1 failed
    rac2 failed
    Result: PRVF-4007 : User equivalence check failed for user “ora11g”
    ERROR:
    User equivalence unavailable on all the specified nodes
    Verification cannot proceed
    Pre-check for cluster services setup was unsuccessful on all the nodes.
    As you see above, check user equivalence failed. I have run the 4 commands to fix this error as below:
    [ora11g@rac1 /]$ ssh-keygen
    Its output:
    Generating public/private rsa key pair.
    Enter file in which to save the key (/home/grid/.ssh/id_rsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /home/grid/.ssh/id_rsa.
    Your public key has been saved in /home/grid/.ssh/id_rsa.pub.
    The key fingerprint is:
    0c:10:6c:3b:ae:21:63:64:f8:0d:0e:d8:f0:41:32:ff [email protected]
    [ora11g@rac1 .ssh]$ cat *pub >>authorized_keys
    [ora11g@rac1 .ssh]$ ssh rac1
    Its output:
    The authenticity of host ‘rac1 (127.0.0.1)’ can’t be established.
    RSA key fingerprint is 9d:ae:51:7c:72:81:07:37:31:92:f1:c8:90:bc:52:55.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added ‘rac1′ (RSA) to the list of known hosts.
    Write failed: Broken pipe.
    [ora11g@rac1 .ssh]$ ssh rac1-priv
    Its output:
    The authenticity of host ‘rac1-priv (192.168.137.35)’ can’t be established.
    RSA key fingerprint is 9d:ae:51:7c:72:81:07:37:31:92:f1:c8:90:bc:52:55.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added ‘rac1-priv,192.168.137.35′ (RSA) to the list of known hosts.
    Write failed: Broken pipe.
    After run the 4 commands above, I run the command below again:
    [ora11g@rac1 grid]$ ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose
    Its output is the same:
    PRVF-4007 : User equivalence check failed for user “ora11g”
    ERROR:
    User equivalence unavailable on all the specified nodes
    Verification cannot proceed
    I think the problem is "Broken pipe" and ssh cannot write authorized_keys to the machines.
    My question is:
    Do any folk understand how to solve the issue CUV "check user equivalence failed" for 2 VMs ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying.
    I have installed Grid Infrastructure a few times. Each time, on step 7 of 9, the installer fixes and checks 2 machines correctly. The entire installation has 3 parts as below:
    1) Install Grid Infrastructure for a Cluster
    2) Execute Root Scripts for Install Grid Infrastructure for a Cluster (script is root.sh)
    3) Configure Oracle Grid Infrastructure for a Cluster that includes NCA, ASMCA, PICA and CVU.
    Each time, on step 8 of 9, the Installer installs Grid Infrastructure for a Cluster successfully that includes "Prepare, Copy files, Link binaries, Setup files and Perform remote operations".
    But when the Installer get to part 3 CVU, it fails and then the Database cannot be installed.
    Deinstall Grid is a very complicated process to do. Because of this reason, we need to run CVU at first to make sure everything is correct for 2 machines before install Grid.
    Even we ignore "user equivalence (ssh)", we don't know whether other items can be passed or not because CVU cannot proceed to check the machines.
    My question is:
    How to have the script "runcluvfy.sh" continue to check the machines while confronting "user equivalence failed" ?

  • Creating AppModule in a background user thread (NPE)

    Hello!
    The application uses a user thread (OC4J is running with -userThreads option) which used for perform some background tasks.
    We want the thread creates an application module, fires some methods, releases the module and exit.
    So, we have a code fragment like this in run() method:
    service =
    (AppModule)Configuration.createRootApplicationModule(SERVICE, SERVICE_CONFIG, null);
    service.doSomething();
    Ihe following error is occurring:
    06/12/12 20:44:06 java.lang.NullPointerException
    06/12/12 20:44:06      at com.evermind.server.http.EvermindHttpServletRequest.unprivileged_getSession(EvermindHttpServletRequest.java:2609)
    06/12/12 20:44:06      at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2592)
    06/12/12 20:44:06      at oracle.jbo.http.HttpSessionCookieHelperImpl.generateSessionId(HttpSessionCookieHelperImpl.java:175)
    06/12/12 20:44:06      at oracle.jbo.http.HttpSessionCookieFactory.createSessionCookie(HttpSessionCookieFactory.java:113)
    06/12/12 20:44:06      at oracle.jbo.common.ampool.ApplicationPoolImpl.createSessionCookie(ApplicationPoolImpl.java:452)
    06/12/12 20:44:06      at oracle.jbo.client.Configuration.getApplicationModule(Configuration.java:1540)
    06/12/12 20:44:06      at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1504)
    06/12/12 20:44:06      at ut.ThreadWorker.run(ThreadWorker.java:48)
    06/12/12 20:44:06      at java.lang.Thread.run(Thread.java:595)
    Please, anybody have access to sources, what you can say about this trace or do you have another ideas how to launch module from user thread?
    Thanks in advance!
    Ilya.

    Repost.
    Now I am trying to solve this issue by investigating, why module is running without errors if launched from console. In this case ApplicationPoolImpl.createSessionCookie is also fired, but don't try to obtain HttpSession from web container. When module is launched from background thread the pool ans session factory trying to do it (and error in EvermindHttpServletRequest.java occurs because there is no any requests).
    Ilya.

  • Trying to download Mavericks I get install_error_distribution_signed_by_Apple. then I get kicked off to Lion troubleshooting,I meet the requirements what the h***?

    Trying to download Mavericks I get install_error_distribution_signed_by_Apple. then I get kicked off to Lion troubleshooting,I meet the requirements what the h***?

    Try this thread, it worked for me: https://discussions.apple.com/message/22873594#22873594

  • My Apple TV will not update to the latest software, dose anyone know what the problem is, I've reset, tried to do it wirelessly as well as while connected via Ethernet cable.. Both have resulted in the same message!!

    My Apple TV will not update to the latest software, dose anyone know what the problem is, I've reset, tried to do it wirelessly as well as while connected via Ethernet cable.. Both have resulted in the same message!! Update unsuccessful, current software version is 5.1 (5201) . I've rented a movie recently and does not appear in my movie list, but I have been charged for this movie, can someone help me out with these issues.

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.
    If when you choose restore you get a message that the device cannot be found, download the file below
    Apple TV Software Restore 5.1.1 (2nd generation)
    Apple TV Software Restore 5.1.1 (3rd generation)
    Then hold down the option key while choosing restore and select the downloaded file when prompted.

  • What is the diff'ce while creating a thread

    what is the difference while creating thread using extends Thread, and implements Runnable interface. which one is perform better.

    and for when to use which again depends upon if the
    e class that you wish to make threaded already
    extends from some other class. If so is the case the
    only alternative you are left with is to implement it
    from Runnable interface. ( as java does not supports
    multiple inheritance ).That's a bad advice. You should only extend thread if you actually want to change the behaviour, or extend the functionallity of the thread class. You should not extend the thread class just because it's convinient.
    /Kaj

Maybe you are looking for

  • EWA reports for non abap systems

    Hello gurus, I am facing a problem with configuration of EWA reports for SAP NW Portal. I have already configured EWA for abap systems, and those are running good on weekly basis. but i have problem with configuration of reports for java systems. So

  • Tamahawk Tag giving error

    HI I am using the jsf 1.1.2 and Seam and jboss portal. when i try to use the Tomahawk in the jsf pag. it gives me error, ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered. Please see: http://myfaces.apache.org/toma

  • Not able to start s10-3 Lenevo Laptop

    I tried upgrading my RAM, and inserted the spare DDR3 2 GB ram into the memory slot of Lenevo S10-3 laptop, but unfortunaly after doing this my laptop is not booting up at all. I tried re-inserting the old memory but still the laptop is not starting

  • Mac Mini with Samsung Smart TV?

    Hi gurus, I'm new to Mac. Can I connect a Mac Mini to my Samsung Smart TV as the monitor? Thank you.

  • Convert from Word Processing to Page Layout?

    I received a 26 page document that is in Word Processing mode, but I would like to convert to Page Layout mode. Is this possible? Thanks, Phil